I have the root level set to ON in the log4j.xml, below is the log4j.xml file, anything obvious a miss?. I did have the appenders set to ConsoleAppender and removed the reference to param name="File", but the logs were still not generated.
Many thanks Joe <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> <log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'> <appender name="ROOT" class="org.apache.log4j.ConsoleAppender"> <param name="File" value="C:/Log4jLogs/root.log"/> <layout class = "org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="[%t] %-5p %c - %m%n"/> </layout> </appender> <root> <level value="ON"/> <appender-ref ref="ROOT" /> </root> <appender name="NETMAINT" class="org.apache.log4j.ConsoleAppender"> <param name="File" value="C:/Log4jLogs/netmaint.log"/> <layout class = "org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="[%t] %-5p %c - %m%n"/> </layout> </appender> <logger name="NetMaint"> <level value="DEBUG"/> </logger> <logger name="NetMaint"> <appender-ref ref="NETMAINT" /> </logger> </log4j:configuration> -----Original Message----- From: Alison Ortega [mailto:[EMAIL PROTECTED] Sent: 22 January 2004 17:47 To: [EMAIL PROTECTED] Subject: Re: configuring log4j with BEA Weblogic 8.1 Could you post the entire log4j.xml file? Did you try turning messages on so you can see log4j initializing on the console? Alison Ortega North Carolina State University ACS Systems Programmer II 919-513-1417 >>> [EMAIL PROTECTED] 1/22/2004 12:28:08 PM >>> I have my log4j.xml file in the WEB-INF\classes directory of my server I point to log4j-1.2.6.jar on the classpath of my server on start up I specify Set JAVA_OPTIONS=-Dlog4j.config=C:\bea\user_projects\domains\....\WEB-INF\cl asses\log4j.xml on start up of my server. In my log4j.xml I specify the appender that I attach to the root log <appender name="ROOTFILE" class="org.apache.log4j.FileAppender"> <param name="File" value="C:/Log4jLogs/rootfile.log"/> <layout class = "org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="[%t] %-5p %c - %m%n"/> </layout> </appender> How ever no log files are being written, even though the loggers are set to debug and are referenced in my code. I am using Bea Weblogic 8.1. I have been through the mail archive and seem to have the configuration set up correctly, but could not find any reason why logs would not be generated. Are there any peculiar issues with Weblogic 8.1? or is there a step I have failed to take? Eternally grateful Joe --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
