Commit 9eafa837 authored by yanzg's avatar yanzg

修复bug

parent 2b6e7a86
......@@ -159,6 +159,9 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
// 是否过滤
boolean filter = false;
for (String item : list) {
if (item == null) {
continue;
}
String lower = item.toLowerCase();
notFilter = notFilter || lower.matches(this.cloudConfig.getLogNotFilter());
filter = filter || lower.matches(this.cloudConfig.getLogFilter());
......
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