定时任务推送信息公式支持和调整
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
551 B

package com.tptj.demo.hg.output.formula.provider;
import com.fanruan.api.log.LogKit;
import com.fr.json.JSONObject;
import com.fr.schedule.feature.output.OutputActionHandler;
import java.util.Map;
/**
* @author 秃破天际
* @version 10.0
* Created by 秃破天际 on 2021-04-20
**/
public class LogHandler extends OutputActionHandler<OutputLog> {
@Override
public void doAction( OutputLog action, Map<String, Object> map ) throws Exception {
LogKit.info("LogHandler Print:{}", JSONObject.mapFrom(action).toString());
}
}