log4j:ERROR Could not find value for key log4j.appender.Console 报错解决方法

时间:2020-12-10 19:51:56

在用log4j时报了这样的错误:

log4j:ERROR Could not find value for key log4j.appender.Console
log4j:ERROR Could not instantiate appender named "Console".

解决方法:也就是第一行存在大小写问题,改成大写后程序就能正常打印出sql语句了

错误代码:

log4j.rootLogger=DEBUG,Console

正确代码:

log4j.rootLogger=DEBUG,CONSOLE