Jeremiah, that fixed the problem. The netui-blank project contains a log4j.xml file. Perhaps we should add this section to it...
Scott -----Original Message----- From: Jeremiah Johnson Sent: Wednesday, March 16, 2005 1:14 PM To: Beehive Developers Subject: RE: Log4j warnings? I agree that it isn't an issue. If you would like to get rid of the warning (and pick up all logging messages), then add a root entry to your log4j.xml file. <root> <priority value="error"/> <appender-ref ref="BEEHIVE_CONSOLE_LOG"/> </root> The root entry belongs after the categories. If you have a different appender name, then update the reference... - jeremiah -----Original Message----- From: Eddie O'Neil Sent: Wednesday, March 16, 2005 1:59 PM To: Beehive Developers Subject: Re: Log4j warnings? Doesn't seem like an issue to me -- it's a logger config that isn't found for Tomcat, right? If you want to configure Log4J for your webapp, add a log4j.xml file to WEB-INF/classes as we do for the petstore, coreWeb DRTs, etc. Eddie Scott Semyan wrote: > I am getting the following warnings in my console during Tomcat startup > or deployment. Is this something I should be concerned about? > > Mar 16, 2005 12:27:14 PM org.apache.catalina.core.StandardHostDeployer > install > INFO: Processing Context configuration file URL > file:D:\Apache\Tomcat_5_0\conf\Catalina\localhost\PetList.xml > log4j:WARN No appenders could be found for logger > (org.apache.catalina.session.ManagerBase). > log4j:WARN Please initialize the log4j system properly. > > Scott Semyan >
