Hi, Just adding a Logger is not enough to redirect System.out.println calls to it. You need to add swallowOutput="true" to your Context definition. Or alternatively change the code from using System.out.println to using getServletContext().log(...).
Yoav Shapira http://www.yoavshapira.com >-----Original Message----- >From: Scott Pippin [mailto:[EMAIL PROTECTED] >Sent: Monday, November 15, 2004 10:20 AM >To: [EMAIL PROTECTED] >Subject: logging question > >I am trying to send the return values/errors for an application to a >different stdout file. I set up everything but stdout is being >written >to catalina.out. > >server.xml > > <Server port="8005" shutdown="SHUTDOWN" debug="0"> > <Listener >className="org.apache.catalina.mbeans.ServerLifecycleListener" >debug="0" >/> > <Listener >className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" >debug="0" /> > <Environment name="simpleValue" type="java.lang.Integer" value="30" >/> > <Resource name="UserDatabase" auth="Container" >type="org.apache.catalina.UserDatabase" description="User database >that >can be updated and saved" /> > <ResourceParams name="UserDatabase"> > <parameter> > <name>factory</name> > <value>org.apache.catalina.users.MemoryUserDatabaseFactory</value> > </parameter> > <parameter> > <name>pathname</name> > <value>conf/tomcat-users.xml</value> > </parameter> > </ResourceParams> > </GlobalNamingResources> > <Service name="Catalina"> > <Connector port="8080" maxThreads="150" minSpareThreads="25" >maxSpareThreads="75" enableLookups="false" redirectPort="8443" >acceptCount="100" debug="0" connectionTimeout="20000" >disableUploadTimeout="true" /> > <Connector port="8009" enableLookups="false" redirectPort="8443" >debug="0" protocol="AJP/1.3" /> > <Engine name="Catalina" defaultHost="localhost" debug="0"> > <Logger className="org.apache.catalina.logger.FileLogger" >prefix="catalina_log." suffix=".txt" timestamp="true" /> > <Realm className="org.apache.catalina.realm.JDBCRealm" >connectionName="ims" connectionPassword="ims" >connectionURL="jdbc:mysql://10.131.1.200:3306/ims" >driverName="com.mysql.jdbc.Driver" userTable="imsuser" >userNameCol="userid" userCredCol="passwordid" userRoleTable="imsrole" >roleNameCol="userrole" /> > <Host name="localhost" debug="0" appBase="webapps" >unpackWARs="true" autoDeploy="true" xmlValidation="false" >xmlNamespaceAware="false"> > <Logger className="org.apache.catalina.logger.FileLogger" > directory="logs" prefix="localhost_log." >suffix=".txt" > timestamp="true"/> > </Host> > </Engine> > </Service> > </Server> > >context.xml under the application/web-INF directory ><?xml version="1.0" encoding="utf-8" ?> ><Context path="/IMS" reloadable="true" docBase="IMS" debug="4"> > <Logger className="org.apache.catalina.logger.FileLogger" >prefix="ims_log." suffix=".txt" timestamp="true" verbosity="4" /> > <Logger className="org.apache.catalina.logger.SystemErrLogger" >prefix="ims_err." suffix=".txt" timestamp="true" verbosity="4" /> > <Logger className="org.apache.catalina.logger.SystemOutLogger" >prefix="ims_out." suffix=".txt" timestamp="true" verbosity="4" /> ></Context> > >Tomcat 5.0.28/Apache2 > >Have I missed something? > >Thanks, > >Scott Pippin >[EMAIL PROTECTED] This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This e-mail is intended only for the individual(s) to whom it is addressed, and may not be saved, copied, printed, disclosed or used by anyone else. If you are not the(an) intended recipient, please immediately delete this e-mail from your computer system and notify the sender. Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
