我的 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 项目,我正在使用 springshell 技术,以便我的应用程序在命令提示符下运行......一切都很完美,但是当我执行特定的在我的应用程序中的命令它给了我以下警告:
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.
你能帮我看看我做错了什么吗?