将代码发布到远程服务器时,可以正常运行,本地debug时,在main函数中写了一段测试代码,debug时出现:log4j:WARN No appenders could be found for logger (org.apache.hadoop.metrics2.li)
解决方法:
将下面方法插入到入口点Main方法处,是一个快速的系统配置。作用是与log4j.properties快速关联起来,自动快速地使用缺省Log4j环境。
BasicConfigurator.configure(); //自动快速地使用缺省Log4j环境。
参考:https://blog.csdn.net/weixin_38244174/article/details/81411339