问题现象
今天使用Netty库,一运行,在控制台输出了很多debug级别的日志,把我主要的输出信息都掩盖了:
程序代码:
package com.thb;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;
import io.netty.buffer.Unpooled;
public class Test {
public static void main(String[] args) {
//ByteBuf buf = Unpooled.buffer();
ByteBuf buf = ByteBufAllocator.DEFAULT.buffer();
for (int i = 0; i < 5; i++) {
buf.writeByte(0x68);
}
for (int i =0; i < buf.capacity(); i++) {
System.out.println(buf.getByte(i));
}
System.out.println(buf.capacity());
System.out.println(buf.alloc());
}
}
在控制台输出了大量的DEBUG级别的日志,截取了部分如下:
14:52:01.602 [main] DEBUG io.netty.util.internal.logging.InternalLoggerFactory - Using Log4J2 as the default logging framework
14:52:01.625 [main] DEBUG io.netty.util.internal.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024
14:52:01.626 [main] DEBUG io.netty.util.internal.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096
14:52:01.661 [main] DEBUG io.netty.util.internal.PlatformDependent0 - -Dio.netty.noUnsafe: false
14:52:01.661 [main] DEBUG io.netty.util.internal.PlatformDependent0 - Java version: 19
14:52:01.664 [main] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.theUnsafe: available
14:52:01.665 [main] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.copyMemory: available
14:52:01.666 [main] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.storeFence: available
14:52:01.668 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Buffer.address: available
14:52:01.669 [main] DEBUG io.netty.util.internal.PlatformDependent0 - direct buffer constructor: unavailable
问题解决过程
根据输出的日志,到Netty源码中找到了第一条日志输出的地方:
然后在源代码中搜索,哪个地方是否有系统属性可以设置或者关闭日志的开关,没有发现。
想到了我的maven工程的pom.xml文件,打开看,是配置了对log4j 2的依赖:
再到maven工程的src/main/resources目录下查看,有log4j 2的配置文件:
打开log4j2.xml文件内容查看,有配置输出到控制台的日志,级别为trace:
于是把trace级别调整为warn级别,再执行程序,控制台没有日志打印了。
至此,原因也清楚了,Netty最终是调用了不同的日志框架,就看工程中引用了哪个日志框架。我的maven工程中引用了log4j 2,所以最终调用了log4j 2来输出日志。
为了进一步验证下,又在Netty源码的InternalLoggerFactory的newDefaultFactory(String name)函数内部打上断点,进行debug调试。确实它是挨着顺序查找的,useSlf4JLoggerFactory返回了空,所以走到下一步,找log4j 2,找到了,所以就用这个了。到了log4j 2,那就按照log4j 2的配置往下走了: