What does log4j info level mean
hi ,
I have configured my log4j propertis file as following
log4j.rootLogger=info, R
log4j.appender.R=org.apache.log4j.FileAppender
log4j.appender.R.File=/usr/local/jakarta-tomcat-4.1.30/logs/xmlgateway/xmlgatewaylog.log
log4j.appender.R.layout=org.apache.log4j.SimpleLayout
And in one my Struts Action classes
I included some
log.info("xxxxxx")statements.
But the log file has these other info messages also , how do i avoid these?
INFO - Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
INFO - Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
what should i do to include only my own log statemens.
Thanks

