crawlerlog4j:WARN No appenders could be found for logger (dao.hsqlmanager).
Posted kotete
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了crawlerlog4j:WARN No appenders could be found for logger (dao.hsqlmanager).相关的知识,希望对你有一定的参考价值。
This Short introduction to log4j guide is a little bit old but still valid.
That guide will give you some information about how to use loggers and appenders.
Just to get you going you have two simple approaches you can take.
First one is to just add this line to your main method:
BasicConfigurator.configure();
Second approach is to add this standard log4j.properties
(taken from the above mentioned guide) file to your classpath:
# Set root logger level to DEBUG and its only appender to A1.
log4j.rootLogger=DEBUG, A1
# A1 is set to be a ConsoleAppender.
log4j.appender.A1=org.apache.log4j.ConsoleAppender
# A1 uses PatternLayout.
log4j.appender.A1.layout=org.apache.log4j.PatternLayout
log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
以上是关于crawlerlog4j:WARN No appenders could be found for logger (dao.hsqlmanager).的主要内容,如果未能解决你的问题,请参考以下文章