Commit 899c303a authored by yanzg's avatar yanzg

修复异常提醒,从而正确的跟踪异常信息

parent 5e36394d
......@@ -78,7 +78,7 @@ public class LogBase implements ThreadNext.Next, InitializingBean {
// 循环处理日志信息
while (!cache.isEmpty()) {
// 取出一条日志
LogVo item = cache.poll();
LogInfoVo item = cache.poll();
// 判断日志信息是否为空
if (item == null) {
continue;
......
package com.yanzuoguang.log;
import com.yanzuoguang.cloud.CloudConfig;
import com.yanzuoguang.util.helper.StringHelper;
import com.yanzuoguang.util.vo.CloudConfig;
import org.springframework.stereotype.Component;
import java.util.List;
......
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