控制台上的log4j警告

时间:2015-09-01 07:10:19

标签: java maven log4j spring-shell

我的log4j.properties文件如下:

log4j.rootLogger=WARN, DebugAppender

#Debug logging
log4j.appender.DebugAppender=org.apache.log4j.RollingFileAppender
log4j.appender.DebugAppender.Threshold=WARN
log4j.appender.DebugAppender.File=activityLog.log
log4j.appender.DebugAppender.MaxFileSize=200KB
log4j.appender.DebugAppender.MaxBackupIndex=5
log4j.appender.DebugAppender.layout=org.apache.log4j.PatternLayout
log4j.appender.DebugAppender.layout.ConversionPattern=%d{DATE} %t - %m%n

该文件被添加到类路径和src / resources文件夹中....我的项目是一个maven项目,我正在使用springhell技术,以便我的应用程序在命令提示符上运行...一切都很完美但是当我在我的应用程序中执行一个特定的命令,它给了我以下警告:

 log4j:WARN No appenders could be found for logger (com.gedas.rvs.data.net.ClientAuthenticationType).
 log4j:WARN Please initialize the log4j system properly.
 log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.

你能帮我解决一下我做错了什么吗?

2 个答案:

答案 0 :(得分:1)

您正在定义一个appender(您正在解释log4j在哪里以及如何编写消息)但是您没有定义哪些类别("名称"给予程序中的记录器)应该使用它

这告诉log4j所有类别(rootLogger)都应该使用DebugAppender来编写严重性为DEBUG或更高的消息

# Root logger option
log4j.rootLogger=DEBUG, DebugAppender

或者,如果您有一个名为example.org.MyClass的记录器,则可以添加

log4j.example.org.MyClass=INFO, DebugAppender

log4j.example.org=INFO, DebugAppender

INFO及以上消息发送给appender。

答案 1 :(得分:0)

似乎需要文件追加器。再次检查日志属性文件。这是我的日志属性文件,看看。

# Root logger option
log4j.rootLogger=DEBUG, file

# Redirect log messages to console
#log4j.appender.stdout=org.apache.log4j.ConsoleAppender
#log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n

# Redirect log messages to a log file, support file rolling.
log4j.appender.file=org.apache.log4j.RollingFileAppender
log4j.appender.file.File=C:\\log4j-application.log
log4j.appender.file.MaxFileSize=5MB
log4j.appender.file.MaxBackupIndex=10
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n

log4j.logger.org.hibernate.hql=debug
log4j.logger.org.hibernate.type=trace

不仅要调试appender,还要添加其他行并尝试。它可能会工作!!