Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

huge repetitive debug output on startup

Status
Not open for further replies.

pir8ped

Programmer
Jun 7, 2005
4
GB
Hi,

Can anyone tell me why I get nearly 10,000 lines of output from the Tomcat debug startup? Nearly all of it is a repeat of this:

2005-06-08 06:51:34,125 DEBUG [org.apache.commons.digester.Digester] - < Fire end() for CallParamRule[paramIndex=1, attributeName=null, from stack=false]>
2005-06-08 06:51:34,125 DEBUG [org.apache.commons.digester.Digester.sax] - <characters(
)>
2005-06-08 06:51:34,125 DEBUG [org.apache.commons.digester.Digester.sax] - <endElement(,,mime-mapping)>
2005-06-08 06:51:34,125 DEBUG [org.apache.commons.digester.Digester] - < match='web-app/mime-mapping'>
2005-06-08 06:51:34,125 DEBUG [org.apache.commons.digester.Digester] - < bodyText='



'>

I guess I have something wrong with an xml file somewhere, but I have checked through and can't see what might be wrong.

Thanks,

John Pedersen
 
Tmho, that looks like Log4J traces... Try to change log4J trace level to ERROR instead of DEBUG...

Or... check the debug level in the default servlet in web.xml :
Code:
        <init-param>
            <param-name>debug</param-name>
            <param-value>0</param-value>
        </init-param>

Water is not bad as long as it stays out human body ;-)
 
Hi,

Sorry, I should have been clearer. I realise that it is the debug level, and it is no problem turning it off - I was just wondering what was being processed when all this stuff gets printed out. I thought there might be something a bit wrong with one of my xml files.

John
 
To my mind, what you see is just Debug infos that traces what Tomcat engine is doing. If that were errors, they should be traced as WARNINGS or ERRORS. DEBUG level is just for developpers to watch what engine is doing...

Water is not bad as long as it stays out human body ;-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top