RE: Applicaton-specific logging in Struts

2004-11-30 Thread Allen Day
en relaxing the threshold only for your loggers. Joe >-Original Message- >From: Allen Day [mailto:[EMAIL PROTECTED] >Sent: Wednesday, 1 December 2004 10:24 a.m. >To: [EMAIL PROTECTED] >Subject: RE: Applicaton-specific logging in Struts > > >I'm new to Struts.

RE: Applicaton-specific logging in Struts

2004-11-30 Thread Graeme Miller
ED] Subject: RE: Applicaton-specific logging in Struts That didn't make any difference, but it was worth a try so thanks! Is there a way to turn off the Struts logging? >>> [EMAIL PROTECTED] 11/30/2004 2:30:54 PM >>> Firstly make sure you have no spaces after the commas and

RE: Applicaton-specific logging in Struts

2004-11-30 Thread Joe Germuska
10:24 a.m. To: [EMAIL PROTECTED] Subject: RE: Applicaton-specific logging in Struts I'm new to Struts. I would also like to reduce (or turn off) the Struts logging. Currently I'm using Struts 1.2.4, and I'm using log4j-1.2.9. In addition to the first line, I added the second line to

RE: Applicaton-specific logging in Struts

2004-11-30 Thread Allen Day
e rootlogger entry Try something like log4j.rootCategory=DEBUG,stdout log4j.logger.org.apache.struts=FATAL -Original Message- From: Allen Day [mailto:[EMAIL PROTECTED] Sent: Wednesday, 1 December 2004 10:24 a.m. To: [EMAIL PROTECTED] Subject: RE: Applicaton-specific logging in Struts

RE: Applicaton-specific logging in Struts

2004-11-30 Thread Graeme Miller
: Wednesday, 1 December 2004 10:24 a.m. To: [EMAIL PROTECTED] Subject: RE: Applicaton-specific logging in Struts I'm new to Struts. I would also like to reduce (or turn off) the Struts logging. Currently I'm using Struts 1.2.4, and I'm using log4j-1.2.9. In addition to the first li

RE: Applicaton-specific logging in Struts

2004-11-30 Thread Allen Day
I'm new to Struts. I would also like to reduce (or turn off) the Struts logging. Currently I'm using Struts 1.2.4, and I'm using log4j-1.2.9. In addition to the first line, I added the second line to my 'log4j.properties' file, but nothing changed - log4j.rootLogger=DEBUG, stdout, wlout log4j.l

Re: Applicaton-specific logging in Struts

2004-11-26 Thread Jeff Beal
PROTECTED] Subject: Applicaton-specific logging in Struts Hello, I have implemented a plugin to configure the logging for my application but my application debug log is getting swamped by the struts debug logging. As I understand it, struts uses the common logging based on log4j but I cannot find a

Re: Applicaton-specific logging in Struts

2004-11-26 Thread Duncan Mills
It's also worth checking out Chainsaw as a Log4J viewer - It has filtering capabilities that will probably work just as well for you as separate log files The settings would be (for instance) # log4j.properties in /WEB-INF/classes log4j.rootLogger=ERROR, Chainsaw log4j.appender.Chainsaw=org.ap

RE: Applicaton-specific logging in Struts

2004-11-26 Thread Nicholas Hemley
FATAL,A2 where A1 and A2 are different console or file appenders. -Original Message- From: Nicholas Hemley [mailto:[EMAIL PROTECTED] Sent: 26 November 2004 12:29 To: [EMAIL PROTECTED] Subject: Applicaton-specific logging in Struts Hello, I have implemented a plugin to configure

RE: Applicaton-specific logging in Struts

2004-11-26 Thread McCormack, Chris
log4j.logger.com.myapp=DEBUG,A1 log4j.logger.org.apache.struts=FATAL,A2 where A1 and A2 are different console or file appenders. -Original Message- From: Nicholas Hemley [mailto:[EMAIL PROTECTED] Sent: 26 November 2004 12:29 To: [EMAIL PROTECTED] Subject: Applicaton-specific logging in

Applicaton-specific logging in Struts

2004-11-26 Thread Nicholas Hemley
Hello, I have implemented a plugin to configure the logging for my application but my application debug log is getting swamped by the struts debug logging. As I understand it, struts uses the common logging based on log4j but I cannot find an example of how to separate struts logging from applica