Commit 4977d6e3 by guojuxing

添加日志。需要填写的字段参考 createLog重载的接口

parent 46be8b46
......@@ -38,6 +38,25 @@ public class LogUtils {
doLog(content, operationObject, null, null);
}
/**
* 添加日志。需要填写的字段参考 createLog重载的接口
* @Title: createLogOfNoLogin

* @Description:

* @author guojuxing
* @param logDTO

* @return void


*/
public static void createLogOfNoLogin(final SystemSetLogDTO logDTO) {
ExecutorPoolSingleton.getInstance().executeTask(new Runnable() {
@Override
public void run() {
LOGGER.info("添加日志了,恭喜发财。{}", JSON.toJSONString(logDTO));
logApiService.saveSystemSetLog(logDTO);
}
});
}
/**
* 添加日志
* @param content 操作内容
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment