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

[757 byte] By [Archana678a] at [2007-10-1 3:56:53]
# 1
When you are enabling INFO log level you enabling it for every package which uses log4j,change the default log level to ERROR and just enable logging for your packages.log4j.rootLogger=ERROR, Rlog4j.logger.com.mypackage=INFO
Peter-Lawreya at 2007-7-8 22:48:52 > top of Java-index,Archived Forums,Debugging Tools and Techniques...
# 2
Thanks for the reply.It works , i have another question .I am trying to add the current date before messages, somereason it is not adding it.This is how I am doinglog4j.appender.R.layout=org.apache.log4j.PatternLayoutlog4j.appender.R.ConversionPattern=%d{DATE}
Archana678a at 2007-7-8 22:48:52 > top of Java-index,Archived Forums,Debugging Tools and Techniques...