Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
private static final Logger logger = Logger.getLogger(filename.class); logger.debug("logger" + element);
这条线打印了两次,甚至更多..
这打印为
logger 123 logger 123
(在不同的线路上)
我怀疑是否有多个记录器符合该类的条件(为这些合格记录器配置的附加程序应该相似)并且每个记录器都在打印消息。
查看您的 log4j 配置文件会有所帮助。
尝试
BasicConfigurator.resetConfiguration()
在使用 logger 的方法中BasicConfigurator.configure()之后