RE: log4j problem

2003-01-30 Thread De Cesco, Jonathan
With struts1.1b2 I think you need to get another commons-logging.jar first.
If it can help, Struts will use your log4j conf file if it finds it. In this
conf file you need to set specifically org.apache.struts to have a log level
as WARN for example (as shirishchandra sakhare said!).
In your webapp init servlet, you will have something like this:
PropertyConfigurator.configure("path_to_your_log4j_conf_file");

and the conf file could look like this:

# Set root logger level to DEBUG and its only appender to A1.
log4j.rootLogger=INFO, A1
# A1 is set to be a ConsoleAppender.
log4j.appender.A1=org.apache.log4j.ConsoleAppender
# A1 uses PatternLayout.
log4j.appender.A1.layout=org.apache.log4j.PatternLayout
log4j.appender.A1.layout.ConversionPattern=%d{dd/MM/yy HH:mm:ss} %-5p %C{1}
%x - %m%n
log4j.logger.org.apache.struts=WARN

hope this helps.



-Message d'origine-
De : Matthew Meyer [mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:45
À : Struts Users Mailing List
Objet : Re: log4j problem


I am having a simmilar problem. I'm useing Struts 1.1b2 
within WTE 3.5. The digester and requestProcessor refuse 
to quit logging not matter what I set the log levels at. 
I'm guessing I'm just not finding the correct 
configuration file, but it's really getting annoying. 

Matt,

On Thu, 30 Jan 2003 11:09:10 +0100
  "De Cesco, Jonathan" <[EMAIL PROTECTED]> wrote:
>Hi all,
>I was using Log4J with struts1.0 with no problem. When I 
>updated to
>struts1.1b3, messages from Struts like "RequestProcessor 
>Processing a POST
>request for path url" are logged using my webapp log4j 
>configuration file.
>The problem is I don't want struts to log these messages 
>but it keeps using
>my log4J configuration once it finds it.
>anyone 
>
>-
>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]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: log4j problem

2003-01-30 Thread Matthew Meyer
I am having a simmilar problem. I'm useing Struts 1.1b2 
within WTE 3.5. The digester and requestProcessor refuse 
to quit logging not matter what I set the log levels at. 
I'm guessing I'm just not finding the correct 
configuration file, but it's really getting annoying. 

Matt,

On Thu, 30 Jan 2003 11:09:10 +0100
 "De Cesco, Jonathan" <[EMAIL PROTECTED]> wrote:
Hi all,
I was using Log4J with struts1.0 with no problem. When I 
updated to
struts1.1b3, messages from Struts like "RequestProcessor 
Processing a POST
request for path url" are logged using my webapp log4j 
configuration file.
The problem is I don't want struts to log these messages 
but it keeps using
my log4J configuration once it finds it.
anyone 

-
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]




RE: log4j problem

2003-01-30 Thread De Cesco, Jonathan
It worked, thank you, my understanding of Log4J was rather limited!!


-Message d'origine-
De : [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:31
À : [EMAIL PROTECTED]
Objet : RE: log4j problem


.U can specify log level per logger as well.SO if u want to exclude logging
for 
some packages,U specify a higher log level for that..some thing like

log4j.logger.org.apache.struts=ERROR

So for all loggers whose name starts with org.apache.struts , only errors
wil 
be logged..For other named hirarchies, it will still not change

-Original Message-
From: gourav.pani [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 2:24 PM
To: struts-user
Subject: RE: log4j problem


i was under the impression that you do exclusion by inclusion.  in other
words, if you specify the package you want logged, it excludes everything
else.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 8:22 AM
To: 'Struts Users Mailing List'
Subject: RE: log4j problem


Yes I know the originating class that produces logs, it's RequestProcessor.
But I didn't know that log4j could exclude class from the logs. Is it
configurable in the log4j conf file ?
I will look into it, thanks.


-Message d'origine-
De : [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:18
À : [EMAIL PROTECTED]
Objet : RE: log4j problem


Can you see the originating class for all those struts loggings messages in
the 
logged messages?
I mean in log4j ,u can disable the logging per class or package level..And
if 
struts is using log4j, then it must be creating those log4j loggers which 
generally have the class name...So may be u can specify that disable logging

for all loggers of struts classes ..If u can send a few entries from the log

file, I may be able to help..

regards,
Shirish

-Original Message-
From: jdecesco [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 2:15 PM
To: struts-user
Cc: jdecesco
Subject: RE: log4j problem


ok but the real problem is that struts logs an INFO each time a request is
processed. My webapp should handle hundreds of simultaneous clients
therefore my personal webapps logs are not visible enough. But thanks
anyway.


-Message d'origine-
De : Pani, Gourav [mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:10
À : 'Struts Users Mailing List'
Objet : RE: log4j problem


You may want to increase your default console setting from DEBUG to WARN.
That would eliminate a lot of log messages.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 5:09 AM
To: '[EMAIL PROTECTED]'
Subject: log4j problem


Hi all,
I was using Log4J with struts1.0 with no problem. When I updated to
struts1.1b3, messages from Struts like "RequestProcessor Processing a POST
request for path url" are logged using my webapp log4j configuration file.
The problem is I don't want struts to log these messages but it keeps using
my log4J configuration once it finds it.
anyone 

-
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]

-
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]

-
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]



-
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]




RE: log4j problem

2003-01-30 Thread De Cesco, Jonathan


-Message d'origine-
De : [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:31
À : [EMAIL PROTECTED]
Objet : RE: log4j problem


.U can specify log level per logger as well.SO if u want to exclude logging
for 
some packages,U specify a higher log level for that..some thing like

log4j.logger.org.apache.struts=ERROR

So for all loggers whose name starts with org.apache.struts , only errors
wil 
be logged..For other named hirarchies, it will still not change

-Original Message-
From: gourav.pani [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 2:24 PM
To: struts-user
Subject: RE: log4j problem


i was under the impression that you do exclusion by inclusion.  in other
words, if you specify the package you want logged, it excludes everything
else.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 8:22 AM
To: 'Struts Users Mailing List'
Subject: RE: log4j problem


Yes I know the originating class that produces logs, it's RequestProcessor.
But I didn't know that log4j could exclude class from the logs. Is it
configurable in the log4j conf file ?
I will look into it, thanks.


-Message d'origine-
De : [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:18
À : [EMAIL PROTECTED]
Objet : RE: log4j problem


Can you see the originating class for all those struts loggings messages in
the 
logged messages?
I mean in log4j ,u can disable the logging per class or package level..And
if 
struts is using log4j, then it must be creating those log4j loggers which 
generally have the class name...So may be u can specify that disable logging

for all loggers of struts classes ..If u can send a few entries from the log

file, I may be able to help..

regards,
Shirish

-Original Message-
From: jdecesco [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 2:15 PM
To: struts-user
Cc: jdecesco
Subject: RE: log4j problem


ok but the real problem is that struts logs an INFO each time a request is
processed. My webapp should handle hundreds of simultaneous clients
therefore my personal webapps logs are not visible enough. But thanks
anyway.


-Message d'origine-
De : Pani, Gourav [mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:10
À : 'Struts Users Mailing List'
Objet : RE: log4j problem


You may want to increase your default console setting from DEBUG to WARN.
That would eliminate a lot of log messages.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 5:09 AM
To: '[EMAIL PROTECTED]'
Subject: log4j problem


Hi all,
I was using Log4J with struts1.0 with no problem. When I updated to
struts1.1b3, messages from Struts like "RequestProcessor Processing a POST
request for path url" are logged using my webapp log4j configuration file.
The problem is I don't want struts to log these messages but it keeps using
my log4J configuration once it finds it.
anyone 

-
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]

-
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]

-
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]



-
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]




RE: log4j problem

2003-01-30 Thread shirishchandra . sakhare
.U can specify log level per logger as well.SO if u want to exclude logging for 
some packages,U specify a higher log level for that..some thing like

log4j.logger.org.apache.struts=ERROR

So for all loggers whose name starts with org.apache.struts , only errors wil 
be logged..For other named hirarchies, it will still not change

-Original Message-
From: gourav.pani [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 2:24 PM
To: struts-user
Subject: RE: log4j problem


i was under the impression that you do exclusion by inclusion.  in other
words, if you specify the package you want logged, it excludes everything
else.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 8:22 AM
To: 'Struts Users Mailing List'
Subject: RE: log4j problem


Yes I know the originating class that produces logs, it's RequestProcessor.
But I didn't know that log4j could exclude class from the logs. Is it
configurable in the log4j conf file ?
I will look into it, thanks.


-Message d'origine-
De : [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:18
À : [EMAIL PROTECTED]
Objet : RE: log4j problem


Can you see the originating class for all those struts loggings messages in
the 
logged messages?
I mean in log4j ,u can disable the logging per class or package level..And
if 
struts is using log4j, then it must be creating those log4j loggers which 
generally have the class name...So may be u can specify that disable logging

for all loggers of struts classes ..If u can send a few entries from the log

file, I may be able to help..

regards,
Shirish

-Original Message-
From: jdecesco [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 2:15 PM
To: struts-user
Cc: jdecesco
Subject: RE: log4j problem


ok but the real problem is that struts logs an INFO each time a request is
processed. My webapp should handle hundreds of simultaneous clients
therefore my personal webapps logs are not visible enough. But thanks
anyway.


-Message d'origine-
De : Pani, Gourav [mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:10
À : 'Struts Users Mailing List'
Objet : RE: log4j problem


You may want to increase your default console setting from DEBUG to WARN.
That would eliminate a lot of log messages.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 5:09 AM
To: '[EMAIL PROTECTED]'
Subject: log4j problem


Hi all,
I was using Log4J with struts1.0 with no problem. When I updated to
struts1.1b3, messages from Struts like "RequestProcessor Processing a POST
request for path url" are logged using my webapp log4j configuration file.
The problem is I don't want struts to log these messages but it keeps using
my log4J configuration once it finds it.
anyone 

-
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]

-
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]

-
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]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: log4j problem

2003-01-30 Thread Pani, Gourav
i was under the impression that you do exclusion by inclusion.  in other
words, if you specify the package you want logged, it excludes everything
else.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 8:22 AM
To: 'Struts Users Mailing List'
Subject: RE: log4j problem


Yes I know the originating class that produces logs, it's RequestProcessor.
But I didn't know that log4j could exclude class from the logs. Is it
configurable in the log4j conf file ?
I will look into it, thanks.


-Message d'origine-
De : [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:18
À : [EMAIL PROTECTED]
Objet : RE: log4j problem


Can you see the originating class for all those struts loggings messages in
the 
logged messages?
I mean in log4j ,u can disable the logging per class or package level..And
if 
struts is using log4j, then it must be creating those log4j loggers which 
generally have the class name...So may be u can specify that disable logging

for all loggers of struts classes ..If u can send a few entries from the log

file, I may be able to help..

regards,
Shirish

-Original Message-
From: jdecesco [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 2:15 PM
To: struts-user
Cc: jdecesco
Subject: RE: log4j problem


ok but the real problem is that struts logs an INFO each time a request is
processed. My webapp should handle hundreds of simultaneous clients
therefore my personal webapps logs are not visible enough. But thanks
anyway.


-Message d'origine-
De : Pani, Gourav [mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:10
À : 'Struts Users Mailing List'
Objet : RE: log4j problem


You may want to increase your default console setting from DEBUG to WARN.
That would eliminate a lot of log messages.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 5:09 AM
To: '[EMAIL PROTECTED]'
Subject: log4j problem


Hi all,
I was using Log4J with struts1.0 with no problem. When I updated to
struts1.1b3, messages from Struts like "RequestProcessor Processing a POST
request for path url" are logged using my webapp log4j configuration file.
The problem is I don't want struts to log these messages but it keeps using
my log4J configuration once it finds it.
anyone 

-
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]

-
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]

-
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]




RE: log4j problem

2003-01-30 Thread De Cesco, Jonathan
Yes I know the originating class that produces logs, it's RequestProcessor.
But I didn't know that log4j could exclude class from the logs. Is it
configurable in the log4j conf file ?
I will look into it, thanks.


-Message d'origine-
De : [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:18
À : [EMAIL PROTECTED]
Objet : RE: log4j problem


Can you see the originating class for all those struts loggings messages in
the 
logged messages?
I mean in log4j ,u can disable the logging per class or package level..And
if 
struts is using log4j, then it must be creating those log4j loggers which 
generally have the class name...So may be u can specify that disable logging

for all loggers of struts classes ..If u can send a few entries from the log

file, I may be able to help..

regards,
Shirish

-Original Message-
From: jdecesco [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 2:15 PM
To: struts-user
Cc: jdecesco
Subject: RE: log4j problem


ok but the real problem is that struts logs an INFO each time a request is
processed. My webapp should handle hundreds of simultaneous clients
therefore my personal webapps logs are not visible enough. But thanks
anyway.


-Message d'origine-
De : Pani, Gourav [mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:10
À : 'Struts Users Mailing List'
Objet : RE: log4j problem


You may want to increase your default console setting from DEBUG to WARN.
That would eliminate a lot of log messages.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 5:09 AM
To: '[EMAIL PROTECTED]'
Subject: log4j problem


Hi all,
I was using Log4J with struts1.0 with no problem. When I updated to
struts1.1b3, messages from Struts like "RequestProcessor Processing a POST
request for path url" are logged using my webapp log4j configuration file.
The problem is I don't want struts to log these messages but it keeps using
my log4J configuration once it finds it.
anyone 

-
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]

-
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]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: log4j problem

2003-01-30 Thread shirishchandra . sakhare
Can you see the originating class for all those struts loggings messages in the 
logged messages?
I mean in log4j ,u can disable the logging per class or package level..And if 
struts is using log4j, then it must be creating those log4j loggers which 
generally have the class name...So may be u can specify that disable logging 
for all loggers of struts classes ..If u can send a few entries from the log 
file, I may be able to help..

regards,
Shirish

-Original Message-
From: jdecesco [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 2:15 PM
To: struts-user
Cc: jdecesco
Subject: RE: log4j problem


ok but the real problem is that struts logs an INFO each time a request is
processed. My webapp should handle hundreds of simultaneous clients
therefore my personal webapps logs are not visible enough. But thanks
anyway.


-Message d'origine-
De : Pani, Gourav [mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:10
À : 'Struts Users Mailing List'
Objet : RE: log4j problem


You may want to increase your default console setting from DEBUG to WARN.
That would eliminate a lot of log messages.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 5:09 AM
To: '[EMAIL PROTECTED]'
Subject: log4j problem


Hi all,
I was using Log4J with struts1.0 with no problem. When I updated to
struts1.1b3, messages from Struts like "RequestProcessor Processing a POST
request for path url" are logged using my webapp log4j configuration file.
The problem is I don't want struts to log these messages but it keeps using
my log4J configuration once it finds it.
anyone 

-
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]

-
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]




RE: log4j problem

2003-01-30 Thread De Cesco, Jonathan
ok but the real problem is that struts logs an INFO each time a request is
processed. My webapp should handle hundreds of simultaneous clients
therefore my personal webapps logs are not visible enough. But thanks
anyway.


-Message d'origine-
De : Pani, Gourav [mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 30 janvier 2003 14:10
À : 'Struts Users Mailing List'
Objet : RE: log4j problem


You may want to increase your default console setting from DEBUG to WARN.
That would eliminate a lot of log messages.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 5:09 AM
To: '[EMAIL PROTECTED]'
Subject: log4j problem


Hi all,
I was using Log4J with struts1.0 with no problem. When I updated to
struts1.1b3, messages from Struts like "RequestProcessor Processing a POST
request for path url" are logged using my webapp log4j configuration file.
The problem is I don't want struts to log these messages but it keeps using
my log4J configuration once it finds it.
anyone 

-
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]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: log4j problem

2003-01-30 Thread Pani, Gourav
You may want to increase your default console setting from DEBUG to WARN.
That would eliminate a lot of log messages.

-Original Message-
From: De Cesco, Jonathan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30, 2003 5:09 AM
To: '[EMAIL PROTECTED]'
Subject: log4j problem


Hi all,
I was using Log4J with struts1.0 with no problem. When I updated to
struts1.1b3, messages from Struts like "RequestProcessor Processing a POST
request for path url" are logged using my webapp log4j configuration file.
The problem is I don't want struts to log these messages but it keeps using
my log4J configuration once it finds it.
anyone 

-
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]




log4j problem

2003-01-30 Thread De Cesco, Jonathan
Hi all,
I was using Log4J with struts1.0 with no problem. When I updated to
struts1.1b3, messages from Struts like "RequestProcessor Processing a POST
request for path url" are logged using my webapp log4j configuration file.
The problem is I don't want struts to log these messages but it keeps using
my log4J configuration once it finds it.
anyone 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: mysterious log4j problem

2002-08-27 Thread Donald Ball

On 8/27/2002 at 12:48 PM Craig R. McClanahan wrote:

>Have you heeded the comment at the bottom of the 1.1-b2 download page
>about picking up the latest commons-logging.jar?  It's in the paragraph
>that starts with bold text "Log4J Users Please Note" :-).

Nope, i was needlessly heedless. :) Thanks for the RTFM tip.

- donald


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: mysterious log4j problem

2002-08-27 Thread Craig R. McClanahan



On Tue, 27 Aug 2002, Donald Ball wrote:

> Date: Tue, 27 Aug 2002 15:54:13 -0400
> From: Donald Ball <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED], [EMAIL PROTECTED]
> Subject: Re: mysterious log4j problem
>
> On 8/27/2002 at 12:48 PM Craig R. McClanahan wrote:
>
> >Have you heeded the comment at the bottom of the 1.1-b2 download page
> >about picking up the latest commons-logging.jar?  It's in the paragraph
> >that starts with bold text "Log4J Users Please Note" :-).
>
> Nope, i was needlessly heedless. :) Thanks for the RTFM tip.
>

Someone suggested that I use the  tag around that paragraph.  Hmm
...  :-)

> - donald
>
>

Craig



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: mysterious log4j problem

2002-08-27 Thread Craig R. McClanahan



On Tue, 27 Aug 2002, Donald Ball wrote:

> Date: Tue, 27 Aug 2002 15:16:15 -0400
> From: Donald Ball <[EMAIL PROTECTED]>
> Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]>,
>  [EMAIL PROTECTED]
> To: [EMAIL PROTECTED]
> Subject: mysterious log4j problem
>
> Did something change between 1.1b1 and 1.1b2 regarding log4j behavior in
> struts? It's a long shot, but it's worth asking. Our log4j debug statements
> are disappearing now and the only relevant change we made was to upgrade
> from 1.1b1 to 1.1b2. I grepped through the struts source and wasn't able to
> find any references to log4j, but I thought I'd ask anyway...
>

Have you heeded the comment at the bottom of the 1.1-b2 download page
about picking up the latest commons-logging.jar?  It's in the paragraph
that starts with bold text "Log4J Users Please Note" :-).

  http://jakarta.apache.org/builds/jakarta-struts/release/v1.1-b2/


> - donald

Craig

>
>
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: mysterious log4j problem

2002-08-27 Thread Donald Ball

On 8/27/2002 at 3:16 PM Donald Ball wrote:

>Did something change between 1.1b1 and 1.1b2 regarding log4j behavior in
>struts? It's a long shot, but it's worth asking. Our log4j debug
statements
>are disappearing now and the only relevant change we made was to upgrade
>from 1.1b1 to 1.1b2. I grepped through the struts source and wasn't able
to
>find any references to log4j, but I thought I'd ask anyway...

Once again, never mind. The release notes on the 1.1b2 download page
explain the solution.

- donald


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




mysterious log4j problem

2002-08-27 Thread Donald Ball

Did something change between 1.1b1 and 1.1b2 regarding log4j behavior in
struts? It's a long shot, but it's worth asking. Our log4j debug statements
are disappearing now and the only relevant change we made was to upgrade
from 1.1b1 to 1.1b2. I grepped through the struts source and wasn't able to
find any references to log4j, but I thought I'd ask anyway...

- donald


--
To unsubscribe, e-mail:   
For additional commands, e-mail: