Logging with Struts and Tomcat

2003-07-01 Thread Ludovic Maitre
Hello, I use Struts 1.1 and Tomcat 4.1.24 and i cannot use correctly the logging functionnality of Struts. More exactly i don't know which settings i must set and in which file. It is said in the doc that Struts use the logging facilities of the underlying logging implementation

RE: Logging with Struts and Tomcat

2003-07-01 Thread Wendy Smoak
I use Struts 1.1 and Tomcat 4.1.24 and i cannot use correctly the logging functionnality of Struts. More exactly i don't know which settings i must set and in which file. What underlying logging implementation do you want to use? If you do nothing, you get Commons logging. Look

using Commons logging for struts

2003-06-27 Thread Swaminathan Gurumoorthy
I use commons logging in my struts app. I am given to understand the Struts Framework itself uses Commons logging for its internal logging. Because of this my app log file has lots of struts log messages - like how it reads web.xml and such. Is there any way to tell struts not to log in my log

RE: using Commons logging for struts

2003-06-27 Thread Steve Raeburn
to add other similar lines to filter other packages that struts depends on. Steve -Original Message- From: Swaminathan Gurumoorthy [mailto:[EMAIL PROTECTED] Sent: June 27, 2003 3:18 PM To: [EMAIL PROTECTED] Subject: using Commons logging for struts I use commons logging in my struts

RE: using Commons logging for struts

2003-06-27 Thread Steve Raeburn
Users Mailing List Subject: RE: using Commons logging for struts You should be able to configure the underlying logging mechanism to not log struts messages. For example, if you are using log4j you could add a line like log4j.logger.org.apache.struts=ERROR to your log4j.properties file

Logging in struts.

2003-06-18 Thread Simon Kelly
Hi all, I didn't really want to post such a basic question, but I have tried a couple of possible solutions and have had zero luck. So, How do you log messages using the Struts logger, so that they will print to screen? I.E the window that tomcat is running in, in my case. Thanks, cheers etc

Re: Logging in struts.

2003-06-18 Thread Gemes Tibor
. They are not log messages usually but System.out/System.err println() calls. However if you configure your logging framework to log to console, the result is the same. The struts is logging via commons-logging. Check commons-logging and log4j docs. Hth, Tib

RE: Logging in struts.

2003-06-18 Thread Filip Polsakiewicz
, Filip -Original Message- From: Simon Kelly [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 10:24 AM To: Struts Users Mailing List Subject: Logging in struts. Hi all, I didn't really want to post such a basic question, but I have tried a couple of possible solutions

Re: Logging in struts.

2003-06-18 Thread Simon Kelly
- From: Filip Polsakiewicz [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 10:50 AM Subject: RE: Logging in struts. Hi Simon, there is a lot of info on that question in O'Reilly Programming Jakarta Struts. The tell you how to use Commons

RE: Logging in struts.

2003-06-18 Thread Filip Polsakiewicz
-Original Message- From: Simon Kelly [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 11:02 AM To: Struts Users Mailing List Subject: Re: Logging in struts. Hi Gemes and Filip, Thanks for the answers. I'm using commons logging (and I'm just checkin my copy of Prog

Re: Logging in struts.

2003-06-18 Thread Kwok Peng Tuck
Kelly [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 10:24 AM To: Struts Users Mailing List Subject: Logging in struts. Hi all, I didn't really want to post such a basic question, but I have tried a couple of possible solutions and have had zero luck. So, How do you log messages using

Re: Logging in struts.

2003-06-18 Thread Simon Kelly
: Logging in struts. -Original Message- From: Simon Kelly [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 11:02 AM To: Struts Users Mailing List Subject: Re: Logging in struts. Hi Gemes and Filip, Thanks for the answers. I'm using commons logging (and I'm just

RE: Logging in struts.

2003-06-18 Thread Filip Polsakiewicz
-Original Message- From: Simon Kelly [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 11:36 AM To: Struts Users Mailing List Subject: Re: Logging in struts. Thanks Filip (and hi Kwok, yep found the file. See below) I tested the servlet context logging, and found

Re: Logging in struts.

2003-06-18 Thread Kwok Peng Tuck
Hmm very strange since it doesn't log properly. Looks a bit different then how it's done in the struts examples. I see that they do this, import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; ... .. .. public final class EditSubscriptionAction extends Action {

Re: Logging in struts.

2003-06-18 Thread Simon Kelly
Done that. It's my usual option for loggin in struts. But even that seems to have failed me :-( - Original Message - From: Kwok Peng Tuck [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 12:24 PM Subject: Re: Logging in struts. Hmm very

Re: Logging in struts.

2003-06-18 Thread Adam Hardy
PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 12:24 PM Subject: Re: Logging in struts. Hmm very strange since it doesn't log properly. Looks a bit different then how it's done in the struts examples. I see that they do this, import

Re: Logging in struts.

2003-06-18 Thread Simon Kelly
! Please excuse the noise. SimBANG - Original Message - From: Adam Hardy [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 1:09 PM Subject: Re: Logging in struts. sounds like your logging configuration file doesn't contain what you

Best Practice [WAS: Logging in struts].

2003-06-18 Thread Hibbs, David
to be rather silly. Reviewing the following links for information on configuring logging... http://jakarta.apache.org/struts/userGuide/configuration.html#config_logging http://jakarta.apache.org/commons/logging/api/org/apache/commons/logging/pac kage-summary.html#package_description http

Re: Best Practice [WAS: Logging in struts].

2003-06-18 Thread David Graham
to be rather silly. This was simply an oversight. I'll deprecate the method and the internal variable. Reviewing the following links for information on configuring logging... http://jakarta.apache.org/struts/userGuide/configuration.html#config_logging http://jakarta.apache.org/commons/logging/api

Re: Logging in struts.

2003-06-18 Thread Kwok Peng Tuck
PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 1:09 PM Subject: Re: Logging in struts. sounds like your logging configuration file doesn't contain what you think it does or is not being found at start-up. Simon Kelly wrote: Done that. It's my

Question : Turning off logging for Struts in Tomcat

2003-03-20 Thread Henry Voyer
Hi fellow programmers is there a way to shut up Struts internal console logging? im using log4j for my own logging system and struts keeps printing his internal operations in the console. thanks _ Help STOP SPAM with the new MSN 8

Re: Question : Turning off logging for Struts in Tomcat

2003-03-20 Thread David Graham
PROTECTED] Subject: Question : Turning off logging for Struts in Tomcat Date: Thu, 20 Mar 2003 20:18:50 + Hi fellow programmers is there a way to shut up Struts internal console logging? im using log4j for my own logging system and struts keeps printing his internal operations in the console

RE: Question : Turning off logging for Struts in Tomcat

2003-03-20 Thread Sri Sankaran
[mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 3:19 PM To: [EMAIL PROTECTED] Subject: Question : Turning off logging for Struts in Tomcat Hi fellow programmers is there a way to shut up Struts internal console logging? im using log4j for my own logging system and struts keeps

Re: How do I control logging in Struts? -- Was: Re: Tiles - Stop from logging

2003-02-28 Thread Kris Schneider
Pretty sure you wanna add: log4j.additivity.org.apache.struts.tiles=false Hope that's the right properties file syntax, I usually use XML... Quoting Eddie Bush [EMAIL PROTECTED]: You really should be able to get such examples off the components' respective sites, but, seeing as how folks

Re: How do I control logging in Struts? -- Was: Re: Tiles - Stopfrom logging

2003-02-28 Thread Eddie Bush
Actually, with a single appender, it really shouldn't matter. If he winds up adding additional appenders, then, yes, he may want to do that. The problem solved by that, unless I'm mistaken, is that output shows up on multiple appenders. Hence, with only a single appender, it really isn't

Re: How do I control logging in Struts? -- Was: Re: Tiles - Stop from logging

2003-02-28 Thread Kris Schneider
Nope, you're right, good call. I've just gotten into the habbit of doing that regardless of the number of appenders I've got. Quoting Eddie Bush [EMAIL PROTECTED]: Actually, with a single appender, it really shouldn't matter. If he winds up adding additional appenders, then, yes, he may want

configuring logging in struts

2003-02-19 Thread Kirby Vandivort
read that struts uses commons-logging, and commons-logging will default to using the java 1.4 logging mechanism in my case. And, from the messages it is giving, it appears to be doing that. I'm seeing INFO, WARNING, and SEVERE notes.. (the SEVERE doesn't appear in commons-logging, but does in jdk1.4

logging within struts.

2003-01-29 Thread Simon Kelly
Hi all, I am trying to put some logging into my web-app, and was wondering if it was possible to add a logger to the struts LogManager? But if not, would creating my own LogManager interfer with the struts manager? Cheers Simon PS Does anyone know of a decent tutorial on logging? Institut

RE: logging within struts.

2003-01-29 Thread Arnaud HERITIER
/logging/pac kage-summary.html Arnaud -Message d'origine- De : Simon Kelly [mailto:[EMAIL PROTECTED]] Envoyé : mercredi 29 janvier 2003 12:12 À : Struts Users Mailing List Objet : logging within struts. Hi all, I am trying to put some logging into my web-app, and was wondering

Re: logging within struts.

2003-01-29 Thread Simon Kelly
Thanks. I'll give it a go. Simon - Original Message - From: Arnaud HERITIER [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 1:59 PM Subject: RE: logging within struts. Struts 1.1 uses Commons-logging as logs wrapper. You can use

RE: Problem Using Log4J and Commons Logging with Struts

2002-12-30 Thread pqin
]] Sent: December 28, 2002 12:11 PM To: [EMAIL PROTECTED] Subject: Re: Problem Using Log4J and Commons Logging with Struts Eddie Bush wrote: Add two files to your WEB-INF/classes directory: [...] That should fix things, I believe. The commons-logging package is going to expect that you want

Re: Problem Using Log4J and Commons Logging with Struts

2002-12-30 Thread Paul Hodgetts
Phillip Qin wrote: If I only use log4j, jar has to be placed in my app's WEB-INF/lib. Don't know why it is in a different directory if commons-logging and log4j work together. Just because two libraries use each other's classes doesn't mean their classes (or jars) need to be in the same

RE: Problem Using Log4J and Commons Logging with Struts

2002-12-30 Thread pqin
: Problem Using Log4J and Commons Logging with Struts Phillip Qin wrote: If I only use log4j, jar has to be placed in my app's WEB-INF/lib. Don't know why it is in a different directory if commons-logging and log4j work together. Just because two libraries use each other's classes doesn't

RE: Problem Using Log4J and Commons Logging with Struts

2002-12-28 Thread Senthivel U S
: Problem Using Log4J and Commons Logging with Struts Add two files to your WEB-INF/classes directory: commons-logging.properties == org.apache.commons.logging.LogFactory=org.apache.commons.logging.impl.Lo g4jFactory log4j.properties

Re: Problem Using Log4J and Commons Logging with Struts

2002-12-28 Thread Andreas Mack
application and Struts successfully logging to the simple log. When I just drop log4j-1.2.7.jar into WEB-INF/lib, regardless of whether I configure Commons Logging to use the Log4JCategoryLog or not, I get this exception: I've added this to my CATALINAOPTS: -Dorg.apache.commons.logging.Log

Re: Problem Using Log4J and Commons Logging with Struts

2002-12-28 Thread Paul Hodgetts
Eddie Bush wrote: Add two files to your WEB-INF/classes directory: [...] That should fix things, I believe. The commons-logging package is going to expect that you want to use Log4J if you have the Log4J JAR in the classpath (ie your WEB-INF/lib directory). It's not going to work correctly

Re: Problem Using Log4J and Commons Logging with Struts

2002-12-28 Thread Dan Tran
It is a bug in JRUN4.0 where you have to place log4j jar file in servers/lib directory -D - Original Message - From: Paul Hodgetts [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, December 28, 2002 9:10 AM Subject: Re: Problem Using Log4J and Commons Logging with Struts Eddie

Problem Using Log4J and Commons Logging with Struts

2002-12-27 Thread Paul Hodgetts, Agile Logic
Using the latest nightly build from 2002-12-27, the latest Commons Logging nightly build from 2002-12-27, and Log4J 1.2.7... I have Common Logging configured to use the SimpleLog, and everything is working fine, with both my application and Struts successfully logging to the simple log. When I

Re: Problem Using Log4J and Commons Logging with Struts

2002-12-27 Thread Eddie Bush
Hodgetts, Agile Logic wrote: Using the latest nightly build from 2002-12-27, the latest Commons Logging nightly build from 2002-12-27, and Log4J 1.2.7... I have Common Logging configured to use the SimpleLog, and everything is working fine, with both my application and Struts successfully logging

How do I enable debug logging for struts

2002-11-01 Thread John Prout
Hi Does anyone know how to enable debug level logging for the struts framework? i.e. log.isDebugEnabled() returns true Thanks John Prout -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org

Re: How do I enable debug logging for struts

2002-11-01 Thread Eddie Bush
Which logging implementation, if any, are you using with commons-logging? Or are you just using commons-logging alone? John Prout wrote: Hi Does anyone know how to enable debug level logging for the struts framework? i.e. log.isDebugEnabled() returns true Thanks John Prout -- Eddie Bush

RE: How do I enable debug logging for struts

2002-11-01 Thread John Prout
I'm using the default struts install - just commons-logging alone I think -Original Message- From: Eddie Bush [mailto:ekbush;swbell.net] Sent: Friday, November 01, 2002 11:52 AM To: Struts Users Mailing List Subject: Re: How do I enable debug logging for struts Which logging

Re: How do I enable debug logging for struts

2002-11-01 Thread Eddie Bush
, November 01, 2002 11:52 AM To: Struts Users Mailing List Subject: Re: How do I enable debug logging for struts Which logging implementation, if any, are you using with commons-logging? Or are you just using commons-logging alone? -- Eddie Bush -- To unsubscribe, e-mail: mailto:struts-user

Re: How do I enable debug logging for struts

2002-11-01 Thread Eddie Bush
Ignore the pipes - I don't know how they got in there. Copy/paste error I'd say. Don't include the | chars in your properties file. org.apache.commons.logging.simplelog.defaultlog=debug org.apache.commons.logging.simplelog.log.org.apache.struts=debug Those pipes weren't in the message that I

Logging with Struts on RI: was Redirected to index.jsp unexpectedly

2002-09-25 Thread Geoff Seel
Folks Know I can't expect people on mailing lists to solve all my problems but I was surprised that nobody could help with logging issue below. Has anyone used Struts successfully with the Sun J2EE Reference Implementation (1.3.1)? Does anyone know where the logs should be? Thanks. In message

Re: Logging with Struts on RI: was Redirected to index.jsp unexpectedly

2002-09-25 Thread Tal Rotbart
, 2002 11:19 AM Subject: Logging with Struts on RI: was Redirected to index.jsp unexpectedly Folks Know I can't expect people on mailing lists to solve all my problems but I was surprised that nobody could help with logging issue below. Has anyone used Struts successfully with the Sun J2EE

Re: Logging with Struts on RI: was Redirected to index.jsp unexpectedly

2002-09-25 Thread Eddie Bush
Assuming it follows what Tomcat lays out, you could find them in $TOMCAT_HOME/log -- er ... whatever your top-level directory is :-) Sorry, I use Tomcat. I can't speak to the Sun RI ... sure thought Tomcat was the RI. Geoff Seel wrote: Folks Know I can't expect people on mailing lists to

Re: Logging with Struts on RI: was Redirected to index.jsp unexpectedly

2002-09-25 Thread Steve Gass
On Wednesday 25 September 2002 04:19 am, Geoff Seel wrote: Folks Know I can't expect people on mailing lists to solve all my problems but I was surprised that nobody could help with logging issue below. Has anyone used Struts successfully with the Sun J2EE Reference Implementation (1.3.1)?

Re: Logging with Struts on RI: was Redirected to index.jsp unexpectedly

2002-09-25 Thread Geoff Seel
Thanks Eddie and other guys. Set up a stand-alone Tomcat and everything works, not only logging but the Struts app itself (till it tries to access an EJB!). Exactly the same war file fails in RI, Maybe it's because I was trying to deploy via the deploytool, tomorrow I'll see if I can deploy

logging in struts

2002-09-23 Thread Mark Silva
hey there, i was wondering what people ar eusing for logging in struts. it seems that with jdk1.4, and the included logging, that would be the right framework. has anybody had readon to use something else, like the jakarta package, or log4j? also i had a question about the configuration

Re: logging in struts

2002-09-23 Thread Eddie Bush
for) - nothing? Fine - use the simple console logger By using commons-logging, you alleviate the need to refactor just because you want to use a different logging mechanism. If you want to use JDK1.4 logger, you can -- if not, you can use something else. Struts includes commons-logging

RE: logging in struts

2002-09-23 Thread Galbreath, Mark
We wrote our own BS (before struts) custom logger. I'll send you a copy of the .java file, if you are interested. Mark -Original Message- From: Mark Silva [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 1:08 PM To: Struts Users Mailing List Subject: logging in struts hey

Re: logging in struts

2002-09-23 Thread Zahid Rahman
] Sent: Monday, September 23, 2002 6:08 PM Subject: logging in struts hey there, i was wondering what people ar eusing for logging in struts. it seems that with jdk1.4, and the included logging, that would be the right framework. has anybody had readon to use something else, like the jakarta

Re: logging in struts

2002-09-23 Thread Eddie Bush
Disregard this garbage. I don't know who this guy is or what in the world he thinks he's doing, but many here have filtered him out. Don't be led astray by his unintelligible jibberish. Zahid Rahman wrote: Here is a suggestion! Download chapter 21 of JSP PRO second edition from

Re: logging in struts

2002-09-23 Thread Zahid Rahman
What is garbage about what I wrote ? A complete struts application can be found in chapter 21 of jsp pro second edition. - Original Message - From: Eddie Bush [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, September 23, 2002 7:40 PM Subject: Re: logging

RE: logging in struts

2002-09-23 Thread Hajratwala, Nayan (N.)
Agreed that some previous posts have been pretty sketchy, but it seems to me that in this case he may have just misunderstood the question logging in struts to mean logging in IN struts... in which case his suggestion is probably valid. --- - Nayan Hajratwala - Chikli Consulting LLC - http

RE: logging in struts

2002-09-23 Thread Chappell, Simon P
www.landsend.com Lands' End, Inc. (608) 935-4526 -Original Message- From: Zahid Rahman [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 1:44 PM To: Struts Users Mailing List Subject: Re: logging in struts What is garbage

Re: logging in struts

2002-09-23 Thread Zahid Rahman
, they don't seem to like buying books. Zahid - Original Message - From: Chappell, Simon P [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, September 23, 2002 7:48 PM Subject: RE: logging in struts I checked and there is an example app in the 21st chapter

Re: logging in struts

2002-09-23 Thread Eddie Bush
isn't though ... Hajratwala, Nayan (N.) wrote: Agreed that some previous posts have been pretty sketchy, but it seems to me that in this case he may have just misunderstood the question logging in struts to mean logging in IN struts... in which case his suggestion is probably valid. --- - Nayan

RE: logging in struts

2002-09-23 Thread Chappell, Simon P
And it's not even Friday yet! -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 2:10 PM To: Struts Users Mailing List Subject: Re: logging in struts I highly suspicion this character is, in fact, a bot. He got lucky on a soundex match

Re: logging in struts

2002-09-23 Thread Tiago Nodari
logging in struts to mean logging in IN struts... in which case his suggestion is probably valid. --- - Nayan Hajratwala - Chikli Consulting LLC - http://www.chikli.com -- Eddie Bush -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

RE: logging in struts

2002-09-23 Thread Tero P Paananen
I highly suspicion this character is, in fact, a bot. ...and it is eternal Friday on the Struts User list. Kick the bot off the list. -TPP -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: logging in struts

2002-09-23 Thread Zahid Rahman
to write your own. - - Original Message - From: Eddie Bush [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, September 23, 2002 8:10 PM Subject: Re: logging in struts I highly suspicion this character is, in fact, a bot. He got lucky on a soundex match

RE: logging in struts

2002-09-23 Thread Galbreath, Mark
+1 -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 2:41 PM To: Struts Users Mailing List Subject: Re: logging in struts Disregard this garbage. I don't know who this guy is or what in the world he thinks he's doing, but many here have

RE: logging in struts

2002-09-23 Thread Galbreath, Mark
When you are dealing with this lunatic, everyday is Friday. :-( -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 3:13 PM To: Struts Users Mailing List Subject: RE: logging in struts And it's not even Friday yet! -Original

RE: logging in struts

2002-09-23 Thread Martin Cooper
-Original Message- From: Mark Silva [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 10:08 AM To: Struts Users Mailing List Subject: logging in struts hey there, i was wondering what people ar eusing for logging in struts. it seems that with jdk1.4

RE: logging in struts

2002-09-23 Thread Mark Silva
PROTECTED]] Sent: Monday, September 23, 2002 1:05 PM To: 'Struts Users Mailing List' Subject: RE: logging in struts -Original Message- From: Mark Silva [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 10:08 AM To: Struts Users Mailing List Subject: logging in struts hey

RE: logging in struts

2002-09-23 Thread Martin Cooper
-Original Message- From: Mark Silva [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 1:09 PM To: Struts Users Mailing List Subject: RE: logging in struts martin, where do you place the configuration property file for jdk 1.4? the defaulkt is in a directory

Logging in struts-example

2002-08-29 Thread NP-KARRYS MIKE
I have managed to get the Log4j package logging to a log file, when Jetty starts, for the struts-example application. I expected to see the log messages from the log.info() entries in the MemoryDatabasePlugin class but they do not show up in the log files. Are there additional configurations to

Re: Logging in struts-example

2002-08-29 Thread Craig R. McClanahan
, NP-KARRYS MIKE wrote: Date: Thu, 29 Aug 2002 12:17:12 -0400 From: NP-KARRYS MIKE [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Logging in struts-example I have managed to get the Log4j package logging to a log file, when Jetty starts

RE: Logging in struts-example

2002-08-29 Thread NP-KARRYS MIKE
Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 12:59 PM To: Struts Users Mailing List Subject: Re: Logging in struts-example You can configure the logging detail level for each named package separately -- the example webapp's components would all

RE: Logging in struts-example

2002-08-29 Thread Craig R. McClanahan
On Thu, 29 Aug 2002, NP-KARRYS MIKE wrote: Date: Thu, 29 Aug 2002 15:42:25 -0400 From: NP-KARRYS MIKE [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Logging in struts-example Craig Thanks for the reply: I have figured out

RE: Logging in struts-example

2002-08-29 Thread NP-KARRYS MIKE
this is happening. Thanks for the help. Mike Karrys PRC Public Sector Inc. -Original Message- From: NP-KARRYS MIKE Sent: Thursday, August 29, 2002 2:42 PM To: [EMAIL PROTECTED] Subject: RE: Logging in struts-example Craig Thanks for the reply: I have figured out that I can see

Re: JDK 1.4 Logging with Struts

2002-05-17 Thread @Basebeans.com
Subject: Re: JDK 1.4 Logging with Struts From: Vic C [EMAIL PROTECTED] === If you are not loging a lot log options are ok. If you are loging a lot, you need to use multi trhreaded collectoins, roll your own. Vic Mike Dewhirst wrote: We use Tomcat 4.0.3 / Struts 1.0.2 and Log4J. Before we

JDK 1.4 Logging with Struts

2002-05-16 Thread Chen, Dean (Zhun)
Has anyone implemented JDK 1.4's Logging features with Struts? We used Log4J, but since 1.4 has Logging incorporated, we are investigating this option, any suggestions? The examples on Sun's web site aren't too helpful because it doesn't give you examples of configuration files. Also, how can

RE: JDK 1.4 Logging with Struts

2002-05-16 Thread Mike Dewhirst
- From: Chen, Dean (Zhun) [mailto:[EMAIL PROTECTED]] Sent: 16 May 2002 14:40 To: 'Struts Users Mailing List' Subject: JDK 1.4 Logging with Struts Has anyone implemented JDK 1.4's Logging features with Struts? We used Log4J, but since 1.4 has Logging incorporated, we are investigating

RE: JDK 1.4 Logging with Struts

2002-05-16 Thread Manish-Hirapara
: JDK 1.4 Logging with Struts Has anyone implemented JDK 1.4's Logging features with Struts? We used Log4J, but since 1.4 has Logging incorporated, we are investigating this option, any suggestions? The examples on Sun's web site aren't too helpful because it doesn't give you examples

RE: JDK 1.4 Logging with Struts

2002-05-16 Thread Jon.Ridgway
Users Mailing List' Subject: JDK 1.4 Logging with Struts Has anyone implemented JDK 1.4's Logging features with Struts? We used Log4J, but since 1.4 has Logging incorporated, we are investigating this option, any suggestions? The examples on Sun's web site aren't too helpful because it doesn't give you

Re: JDK 1.4 Logging with Struts

2002-05-16 Thread Markus Garscha
2002 14:40 To: 'Struts Users Mailing List' Subject: JDK 1.4 Logging with Struts Has anyone implemented JDK 1.4's Logging features with Struts? We used Log4J, but since 1.4 has Logging incorporated, we are investigating this option, any suggestions? The examples on Sun's web site aren't too