Re: Commons logging in struts

2008-01-13 Thread Laurie Harper
ble to use commons logging? -Original Message- From: Chris Pratt [mailto:[EMAIL PROTECTED] Sent: Thursday, January 10, 2008 10:39 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: Commons logging in struts On Jan 10, 2008 1:25 AM, Raghuveer <[EMAIL PROTECTED]> wrote

RE: Commons logging in struts

2008-01-10 Thread Raghuveer
PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: Re: Commons logging in struts On Jan 10, 2008 1:25 AM, Raghuveer <[EMAIL PROTECTED]> wrote: > Could any one provide information of using commons logging for logging my > application related logs in my JSP-STRUTS application

Re: Commons logging in struts

2008-01-10 Thread Chris Pratt
On Jan 10, 2008 1:25 AM, Raghuveer <[EMAIL PROTECTED]> wrote: > Could any one provide information of using commons logging for logging my > application related logs in my JSP-STRUTS application > > Commons logging is just a logging facade, it is not a logging system itself. It is used by librari

Commons logging in struts

2008-01-10 Thread Raghuveer
Could any one provide information of using commons logging for logging my application related logs in my JSP-STRUTS application

RE: Logging in Struts

2006-11-17 Thread Thomas Joseph
, 2006 2:19 AM To: Struts User Group Subject: Logging in Struts Good day I am having a hard time understanding how to use logging in Struts. The struts.apache.org suggest the following usage (presumably for business objects) (taken from: However, I am wondering whether this is OK, given that my

Logging in Struts

2006-11-16 Thread Mon Cab
Good day I am having a hard time understanding how to use logging in Struts. The struts.apache.org suggest the following usage (presumably for business objects) (taken from: http://struts.apache.org/1.x/userGuide/building_controller.html ) package com.foo

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