Re: tomcat logging

2022-06-09 Thread tomcat-lists
Hi Alan, On 09.06.22 12:56, Alan F wrote: > Tomcat logging > > I would like to add a delimiter or characters " " around {user-agent} for > logging, I wanted it in double quotes for example "Mozilla 5.0.." but can't > seem to make it work. Or even addi

tomcat logging

2022-06-09 Thread Alan F
Tomcat logging I would like to add a delimiter or characters " " around {user-agent} for logging, I wanted it in double quotes for example "Mozilla 5.0.." but can't seem to make it work. Or even adding a # symbol before would hel

Tomcat Logging for POST returning a 500 (Internal Server Error)

2016-04-07 Thread Chris Odd
Hi, I am trying to troubleshoot a GWT application that I have deployed to a tomcat server (Apache Tomcat/7.0.55), running on a Bitnami stack (Ubuntu 14.04.1) at AWS. The initial web page loads just

RE: Tomcat logging with Log4j

2014-04-18 Thread Scott Bailey
: Tomcat logging with Log4j -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Scott, On 4/16/14, 10:15 AM, Scott Bailey wrote: I was able to get one of our developers and it was simple for them to add the logging for our app to the logback we are using a file and add logging rotation. My issue

Re: Tomcat logging with Log4j

2014-04-17 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Scott, On 4/16/14, 10:15 AM, Scott Bailey wrote: I was able to get one of our developers and it was simple for them to add the logging for our app to the logback we are using a file and add logging rotation. My issue is resolved. Thanks for the

RE: Tomcat logging with Log4j

2014-04-16 Thread Scott Bailey
: Tuesday, April 15, 2014 3:15 PM To: Tomcat Users List Subject: RE: Tomcat logging with Log4j Hello Christopher, What steps did you actually take? Steps on this site: http://mrhaki.blogspot.com/2011/02/configure-log4j-on-tomcat.html Downloaded new jars from extras for tomcat. tomcat-juli.jar

Tomcat logging with Log4j

2014-04-15 Thread Scott Bailey
Hi all, We need to add log rotation and log size management to tomcat 7. Tried converting to Log4j steps from tomcat website (http://tomcat.apache.org/tomcat-7.0-doc/logging.html) but did not work, was able to get it to work from

Re: Tomcat logging with Log4j

2014-04-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Scott, On 4/15/14, 2:50 PM, Scott Bailey wrote: We need to add log rotation and log size management to tomcat 7. Tried converting to Log4j steps from tomcat website (http://tomcat.apache.org/tomcat-7.0-doc/logging.html) but did not work, was

RE: Tomcat logging with Log4j

2014-04-15 Thread Scott Bailey
=com.donlen.common.utility.logging.DefaultAlignedLayout/ /encoder /appender Thanks! -Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: Tuesday, April 15, 2014 2:22 PM To: Tomcat Users List Subject: Re: Tomcat logging with Log4j -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Scott, On 4/15

Tomcat logging for Internal Server Errors (500)

2014-04-13 Thread Ian Long
Hi All, I need some help tracking down a random infrequent Internal Server Error that isn’t getting logged anywhere.  I’m using Tomcat 7.0.53 behind apache httpd with mod_jk 1.2.39. I use new relic application monitoring, and I see in their application error reports that a 500 error from

Re: Configure Tomcat Logging Programmatically

2013-12-10 Thread java developer
Hi, Calling tomcat.setSilent(false) might help. Just try this and see if this helps. Below is small funcation from Tomcat class. /** * Controls if the loggers will be silenced or not. * @param silentcodetrue/code sets the log level to WARN for the *

Configure Tomcat Logging Programmatically

2013-12-09 Thread Matthew Westwood-Hill
I am running Tomcat programmatically (embedded) and I wanted to configure its logging so I can track inbound request. I start Tomcat as follows: tomcat = new Tomcat(); tomcat.setBaseDir(DEFAULT_BASE_DIR); tomcat.getService().addConnector(defaultConnector);

Re: Tomcat logging, request

2013-10-26 Thread Mark Thomas
André Warnier a...@ice-sa.com wrote: Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 André, On 10/25/13, 7:18 AM, André Warnier wrote: For example, a utility such as logrotate, in the sysadmin world, is like a gift of God. Most server-like programs allow

Tomcat logging, request

2013-10-25 Thread André Warnier
Hi. This is a humble request to the Tomcat developers. First an introduction : This is a mailing list dedicated to helping people use Tomcat, and by extension java webapps and java itself. So it is normal that an overwhelming number of the people who are accessing this list and its archives

Re: Tomcat logging, request

2013-10-25 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 André, On 10/25/13, 7:18 AM, André Warnier wrote: For example, a utility such as logrotate, in the sysadmin world, is like a gift of God. Most server-like programs allow logrotate to rotate their logfiles, compress old ones, remove even older

Re: Tomcat logging, request

2013-10-25 Thread André Warnier
Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 André, On 10/25/13, 7:18 AM, André Warnier wrote: For example, a utility such as logrotate, in the sysadmin world, is like a gift of God. Most server-like programs allow logrotate to rotate their logfiles, compress old

Re: Tomcat Logging Jarhell

2012-03-14 Thread Christopher Gross
That section just gives some basic info, but nothing that tries to help with what I'm doing. I'm well aware what the directories are for. There are a lot of libraries that my apps have in common, and because of the nature of the project, I need to try to conserve space. By moving jars to a

Re: Tomcat Logging Jarhell

2012-03-14 Thread Christopher Gross
After reverting -- all but one of my logs are working correctly. Each web app has a log4j jar and the commons logging jars in its WEB-INF/lib, and a log4j.properties in the WEB-INF/class. I didn't change that file at all. Any ideas as to why the one set of log files aren't being written to? --

Re: Tomcat Logging Jarhell

2012-03-14 Thread Mark Thomas
On 14/03/2012 14:04, Christopher Gross wrote: After reverting -- all but one of my logs are working correctly. Each web app has a log4j jar and the commons logging jars in its WEB-INF/lib, and a log4j.properties in the WEB-INF/class. I didn't change that file at all. Any ideas as to why

Re: Tomcat Logging Jarhell

2012-03-14 Thread Christopher Gross
Correct -- a typo. WEB-INF/classes -- Chris On Wed, Mar 14, 2012 at 10:20 AM, Mark Thomas ma...@apache.org wrote: On 14/03/2012 14:04, Christopher Gross wrote: After reverting -- all but one of my logs are working correctly.  Each web app has a log4j jar and the commons logging jars in its

Tomcat Logging Jarhell

2012-03-13 Thread Christopher Gross
Hi all. I'm trying to utilize the common/lib and shared/lib directories on Tomcat 5.5.25. I have a few separate apps that were each using many of the same JAR files, so I have been moving them down to shared common lib (DB stuff went to common/lib, the apache commons modules others went to

RE: Tomcat Logging Jarhell

2012-03-13 Thread Allen Reese
: Tomcat Logging Jarhell Hi all. I'm trying to utilize the common/lib and shared/lib directories on Tomcat 5.5.25. I have a few separate apps that were each using many of the same JAR files, so I have been moving them down to shared common lib (DB stuff went to common/lib, the apache

Re: Tomcat Logging Jarhell

2012-03-13 Thread Christopher Gross
-logging, and log4j as our installation provides them for you in a common lib dir. --Allen Reese Yahoo!, Inc. -Original Message- From: Christopher Gross [mailto:cogr...@gmail.com] Sent: Tuesday, March 13, 2012 12:41 PM To: Tomcat Users List Subject: Tomcat Logging Jarhell Hi all

Re: Tomcat Logging Jarhell

2012-03-13 Thread Christopher Gross
:41 PM To: Tomcat Users List Subject: Tomcat Logging Jarhell Hi all.   I'm trying to utilize the common/lib and shared/lib directories on Tomcat 5.5.25.  I have a few separate apps that were each using many of the same JAR files, so I have been moving them down to shared common lib (DB

RE: Tomcat Logging Jarhell

2012-03-13 Thread Allen Reese
app. --Allen Yahoo!, Inc. -Original Message- From: Christopher Gross [mailto:cogr...@gmail.com] Sent: Tuesday, March 13, 2012 1:01 PM To: Tomcat Users List Subject: Re: Tomcat Logging Jarhell http://publib.boulder.ibm.com/infocenter/initiate/v9r5/index.jsp?topic

Re: Tomcat Logging Jarhell

2012-03-13 Thread Christopher Gross
- From: Christopher Gross [mailto:cogr...@gmail.com] Sent: Tuesday, March 13, 2012 1:01 PM To: Tomcat Users List Subject: Re: Tomcat Logging Jarhell http://publib.boulder.ibm.com/infocenter/initiate/v9r5/index.jsp?topic= %2Fcom.ibm.inspinstall.doc%2Ftopics

Re: Tomcat Logging Jarhell

2012-03-13 Thread Konstantin Kolinko
2012/3/13 Christopher Gross cogr...@gmail.com: Hi all.  I'm trying to utilize the common/lib and shared/lib directories on Tomcat 5.5.25.  I have a few separate apps that were each using many of the same JAR files, so I have been moving them down to shared common lib (DB stuff went to

Re: Tomcat Logging and HTTP Header question

2011-12-03 Thread André Warnier
Pid wrote: There are Tomcat professors? I'd say that they fit right in with pet food tasters, dog walkers and chicken sexers, no ? - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands,

Re: Tomcat Logging and HTTP Header question

2011-12-02 Thread jmpaul012
site that is using Tomcat? I have to make sure the HTTP header does not show information about the web server which would include, web server product, version, or host operating system -- View this message in context: http://old.nabble.com/Tomcat-Logging-and-HTTP-Header-question

Re: Tomcat Logging and HTTP Header question

2011-12-02 Thread Daniel Mikusa
On Fri, 2011-12-02 at 09:10 -0800, jmpaul012 wrote: can anyone help?? jmpaul012 wrote: So I am doing Tomcat STIGS and I am stuck on two of the STIGs. 1. How do I change what tomcat logs? I think it's something I need to do in server.xml but I'm not sure. This is what I need to

Re: Tomcat Logging and HTTP Header question

2011-12-02 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 To whom it may concern, On 12/2/11 12:10 PM, jmpaul012 wrote: So I am doing Tomcat STIGS and I am stuck on two of the STIGs. 1. How do I change what tomcat logs? I think it's something I need to do in server.xml but I'm not sure. What have

Re: Tomcat Logging and HTTP Header question

2011-12-02 Thread jmpaul012
: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org -- View this message in context: http://old.nabble.com/Tomcat-Logging-and-HTTP-Header-question-tp32892450p32904101.html Sent from the Tomcat - User mailing list archive at Nabble.com

Re: Tomcat Logging and HTTP Header question

2011-12-02 Thread Pid
On 02/12/2011 18:12, jmpaul012 wrote: Sorry I didn't mean to ask the questions as though this forum is my private consulting firm. I have done everything I could before I posted on this forum. I have searched google, experts exchange, asked coworkers, and asked my previous Tomcat

Tomcat Logging and HTTP Header question

2011-12-01 Thread jmpaul012
header does not show information about the web server which would include, web server product, version, or host operating system -- View this message in context: http://old.nabble.com/Tomcat-Logging-and-HTTP-Header-question-tp32892450p32892450.html Sent from the Tomcat - User mailing list archive

Re: Tomcat Logging and HTTP Header question

2011-12-01 Thread André Warnier
to access the web application. Logging successful attempts should be feasible, but I can see problems for Tomcat logging cases where the request doesn't even make it to Tomcat. In any case, your first stop should probably be the on-line documentation for the AccessLog Valve

Re: Tomcat Logging and HTTP Header question

2011-12-01 Thread jmpaul012
application. Logging successful attempts should be feasible, but I can see problems for Tomcat logging cases where the request doesn't even make it to Tomcat. In any case, your first stop should probably be the on-line documentation for the AccessLog Valve

Re: Tomcat Logging level change

2011-06-23 Thread Roshni Basu
://old.nabble.com/Tomcat-Logging-level-change-tp31902405p31909658.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail

Re: Tomcat Logging level change

2011-06-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Roshni, On 6/23/2011 4:49 AM, Roshni Basu wrote: Do i need to make any changes in the logging.properties file? That's typically how logging is configured. I tried making everything from FINE to WARNING and also i tried adding

Tomcat Logging level change

2011-06-22 Thread Roshni Basu
it behvaes and why am i getting info level logs? -- View this message in context: http://old.nabble.com/Tomcat-Logging-level-change-tp31902405p31902405.html Sent from the Tomcat - User mailing list archive at Nabble.com

Re: Tomcat Logging level change

2011-06-22 Thread Konstantin Kolinko
2011/6/22 Roshni Basu roshni...@gmail.com: I am changing the log level of tomcat to Level.WARNING. In this case I'm trying to restart tomcat and see the logs, I can see the info level logs like INFO: Server startup in 50516 ms . I guess info level logs should not appear if log level set to

Re: Tomcat Logging level change

2011-06-22 Thread Roshni Basu
-- View this message in context: http://old.nabble.com/Tomcat-Logging-level-change-tp31902405p31903978.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Tomcat Logging level change

2011-06-22 Thread Mark Thomas
On 22/06/2011 16:03, Roshni Basu wrote: Tomcat version is 6.0.9. Here is my snippet of code: LogManager logManager = LogManager.getLogManager(); EnumerationString e = logManager.getLoggerNames(); while (e.hasMoreElements()) { String loggername =

Re: Tomcat Logging level change

2011-06-22 Thread Roshni Basu
- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org -- View this message in context: http://old.nabble.com/Tomcat-Logging-level-change-tp31902405p31904108.html Sent from

Re: Tomcat Logging level change

2011-06-22 Thread Mark Thomas
On 22/06/2011 16:16, Roshni Basu wrote: I have created a java file. And running this. Could you elaborate what exactly you want to know? I want to know how this code is being executed. When does it run? What triggers it? Mark Mark Thomas wrote: On 22/06/2011 16:03, Roshni Basu wrote:

Re: Tomcat Logging level change

2011-06-22 Thread Roshni Basu
-- View this message in context: http://old.nabble.com/Tomcat-Logging-level-change-tp31902405p31904220.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Tomcat Logging level change

2011-06-22 Thread Roshni Basu
-- View this message in context: http://old.nabble.com/Tomcat-Logging-level-change-tp31902405p31904384.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

RE: Tomcat Logging level change

2011-06-22 Thread Caldarale, Charles R
From: Roshni Basu [mailto:roshni...@gmail.com] Subject: Re: Tomcat Logging level change I just run it when I need to change the log level. (This is like pulling teeth.) You're providing virtually no useful information here. You run the program where? As a servlet? Standalone? In some

RE: Tomcat Logging level change

2011-06-22 Thread Roshni Basu
Application is running on tomcat. n828cl wrote: From: Roshni Basu [mailto:roshni...@gmail.com] Subject: Re: Tomcat Logging level change I just run it when I need to change the log level. (This is like pulling teeth.) You're providing virtually no useful information here. You run

RE: Tomcat Logging level change

2011-06-22 Thread Roshni Basu
Its working fine when I set to Fine. In catalina.out i can see fine and info logs butwhen I set to warning, even info level logs appear. n828cl wrote: From: Roshni Basu [mailto:roshni...@gmail.com] Subject: Re: Tomcat Logging level change I just run it when I need to change the log level

Re: Tomcat Logging level change

2011-06-22 Thread Konstantin Kolinko
2011/6/22 Roshni Basu roshni...@gmail.com:  Tomcat version is 6.0.9. You know, 6.0.32 is out there... http://tomcat.apache.org/security-6.html Here is my snippet of code: LogManager logManager = LogManager.getLogManager();        EnumerationString e = logManager.getLoggerNames(); It won't

Re: Tomcat Logging level change

2011-06-22 Thread Roshni Basu
: http://old.nabble.com/Tomcat-Logging-level-change-tp31902405p31908461.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail

Switching native Tomcat logging system

2011-05-31 Thread Francis GALIEGUE
Hello, For some obscure reasons, Tomcat insists on having its own native implementation of a logging system, namely juli. This is beyond my understanding. Log4j has existed for years, is much better than even the native Sun's JDK logging API of today, and Tomcat hasn't switched to it, even to

Re: Switching native Tomcat logging system

2011-05-31 Thread Pid
On 31/05/2011 19:49, Francis GALIEGUE wrote: Hello, For some obscure reasons, Tomcat insists on having its own native implementation of a logging system, namely juli. This is beyond my understanding. Log4j has existed for years, is much better than even the native Sun's JDK logging API of

Re: Switching native Tomcat logging system

2011-05-31 Thread Mark Eggers
- Original Message - From: Francis GALIEGUE f...@one2team.com To: Tomcat Users List users@tomcat.apache.org Cc: Sent: Tuesday, May 31, 2011 11:49 AM Subject: Switching native Tomcat logging system Hello, For some obscure reasons, Tomcat insists on having its own native

Tomcat logging changed between 6.0.29 6.0.32

2011-04-02 Thread Patrick Flaherty
Hello, I noticed that I'm getting what appears to be *all* console logging showing up in my tomcat6-stdout log file. It's capturing so much more that then it used to. I looked at the changelog from 6.0.29 to 6.0.32 and I don't see anything that describes such a change. Does anyone know

Re: Tomcat logging changed between 6.0.29 6.0.32

2011-04-02 Thread Konstantin Kolinko
2011/4/2 Patrick Flaherty pflah...@rampageinc.com: Hello, I noticed that I'm getting what appears to be *all* console logging showing up in my tomcat6-stdout log file. It's capturing so much more that then it used to. I looked at the changelog from 6.0.29 to 6.0.32 and I don't see anything

Re: Tomcat logging changed between 6.0.29 6.0.32

2011-04-02 Thread Patrick Flaherty
There are definitely changes. What used to show up was anything I printed from my app via System.out.println. I don't see any of those messages in any of the logs. What I see that's was never seen in any Tomcat logs is what looks like messaging from a 3rd party dll. If I run the console

Re: Tomcat logging changed between 6.0.29 6.0.32

2011-04-02 Thread Konstantin Kolinko
2011/4/3 Patrick Flaherty pflah...@rampageinc.com: Also of note, I see the stderr log with a *lot of the messages* that are in the Catalina log. Exact duplicate line entries. That is expected. Remove java.util.logging.ConsoleHandler from configuration. A 1catalina.org.apache.juli.FileHandler

Re: Tomcat logging changed between 6.0.29 6.0.32

2011-04-02 Thread Patrick Flaherty
On Apr 2, 2011, at 6:53 PM, Konstantin Kolinko wrote: 2011/4/3 Patrick Flaherty pflah...@rampageinc.com: Also of note, I see the stderr log with a *lot of the messages* that are in the Catalina log. Exact duplicate line entries. That is expected. Remove java.util.logging.ConsoleHandler

Re: Tomcat Logging Not Working Properly

2010-09-26 Thread Rainer Jung
On 24.09.2010 16:05, Donald Winston wrote: I can't get logging to work properly with tomcat(. The file handler prefix works but anything below INFO does not show up in the log! What could be wrong? I declare the logger in my classes like the following: private static Logger logger =

Re: Tomcat Logging Not Working Properly

2010-09-25 Thread Pid
On 25/09/2010 02:51, Donald Winston wrote: resurrection.level=FINE (thanks everybody. You were helpful) You should ask for your money back. p 0x62590808.asc Description: application/pgp-keys signature.asc Description: OpenPGP digital signature

Tomcat Logging Not Working Properly

2010-09-24 Thread Donald Winston
I can't get logging to work properly with tomcat(. The file handler prefix works but anything below INFO does not show up in the log! What could be wrong? I declare the logger in my classes like the following: private static Logger logger =

Re: Tomcat Logging Not Working Properly

2010-09-24 Thread Donald Winston
resurrection.level=FINE (thanks everybody. You were helpful) On Sep 24, 2010, at 10:05 AM, Donald Winston wrote: I can't get logging to work properly with tomcat(. The file handler prefix works but anything below INFO does not show up in the log! What could be wrong? I declare the logger

Re: Tomcat Logging Not Working Properly

2010-09-24 Thread Wesley Acheson
On Sat, Sep 25, 2010 at 3:51 AM, Donald Winston satchwins...@yahoo.com wrote: resurrection.level=FINE (thanks everybody. You were helpful) Hey If I don't know I don't answer. - To unsubscribe, e-mail:

tomcat logging error

2010-01-03 Thread Niyas
) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689) at java.lang.Thread.run(Thread.java:595) Please help. -- View this message in context: http://old.nabble.com/tomcat-logging-error-tp27000315p27000315.html Sent from the Tomcat - User mailing list archive

reconfiguring tomcat logging

2009-09-02 Thread Chris Cheshire
Whenever tomat compiles a JSP page and there is an error in it (for instance trying to reference a property on a bean that doesn't exist), it is throwing (and obscuring) an exception and logging it to catalina.out and then returning whatever html it has built to the browser, as in : Sep 2, 2009

Re: Tomcat Logging Wrong time in tomcat logs

2008-11-07 Thread carrieg
-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Tomcat-Logging-Wrong-time-in-tomcat-logs-tp15152476p20393595.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To start

how to enable embedded tomcat logging - stderr.log stdout.log ?

2008-10-23 Thread Raminder Singh
Hi, We are using embedded tomcat (5.0.28) in our project. Now the requirement is to enable tomcat level logging mainly into stderr.log stdout.log. Current code updates: // 1. tried settting logging at server level embedded = new Embedded(); // print all log statments to standard error

Re: Tomcat Logging and URL rewrite

2008-09-30 Thread Mark Thomas
Mohit Anchlia wrote: Is it possible to rewrite URL in tomcat like apache web server. I need to convert abc.com/A to abc.com/B. http://tuckey.org/urlrewrite/ Also catalina.out is just writing infomation at level INFO. I changed the level to ALL in logging.properties but still I don't see

Re: Tomcat Logging and URL rewrite

2008-09-30 Thread Mohit Anchlia
Tomcat version is 5.5 and I changed org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level to ALL On Tue, Sep 30, 2008 at 1:52 AM, Mark Thomas [EMAIL PROTECTED] wrote: Mohit Anchlia wrote: Is it possible to rewrite URL in tomcat like apache web server. I need to convert abc.com/A

Re: Tomcat Logging and URL rewrite

2008-09-30 Thread Mark Thomas
internal Tomcat logging. Mark On Tue, Sep 30, 2008 at 1:52 AM, Mark Thomas [EMAIL PROTECTED] wrote: Mohit Anchlia wrote: Is it possible to rewrite URL in tomcat like apache web server. I need to convert abc.com/A to abc.com/B. http://tuckey.org/urlrewrite/ Also catalina.out is just writing

Re: Tomcat Logging and URL rewrite

2008-09-30 Thread Mohit Anchlia
/logging.html should help org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level to ALL That won't show you any internal Tomcat logging. Mark On Tue, Sep 30, 2008 at 1:52 AM, Mark Thomas [EMAIL PROTECTED] wrote: Mohit Anchlia wrote: Is it possible to rewrite URL in tomcat like apache

Tomcat Logging and URL rewrite

2008-09-29 Thread Mohit Anchlia
Is it possible to rewrite URL in tomcat like apache web server. I need to convert abc.com/A to abc.com/B. Also catalina.out is just writing infomation at level INFO. I changed the level to ALL in logging.properties but still I don't see DEBUG logs. Is there a way to debug this problem?

Tomcat logging properties

2008-09-10 Thread Brian Clark
At the bottom of my Tomcat 6.0.16 logging.properties file, I have the following entries: #org.apache.catalina.startup.ContextConfig.level = FINE #org.apache.catalina.startup.HostConfig.level = FINE #org.apache.catalina.session.ManagerBase.level = FINE

Re: Tomcat logging properties

2008-09-10 Thread Yassine
have a look here if you still need more info http://tomcat.apache.org/tomcat-6.0-doc/logging.html On Thu, Sep 11, 2008 at 2:10 AM, Brian Clark [EMAIL PROTECTED] wrote: At the bottom of my Tomcat 6.0.16 logging.properties file, I have the following entries:

Re: Tomcat logging properties

2008-09-10 Thread Brian Clark
Yep, read through that, but it didn't tell me what those directives actually mean. Anyone have anything else? - Original Message From: Yassine [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Wednesday, September 10, 2008 8:17:01 PM Subject: Re: Tomcat logging

Re: Tomcat logging properties

2008-09-10 Thread Bill Barker
] Yep, read through that, but it didn't tell me what those directives actually mean. Anyone have anything else? - Original Message From: Yassine [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Wednesday, September 10, 2008 8:17:01 PM Subject: Re: Tomcat logging

RE: Tomcat logging properties

2008-09-10 Thread Caldarale, Charles R
From: Brian Clark [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat logging properties Yep, read through that, but it didn't tell me what those directives actually mean. Anyone have anything else? They specify logging levels for those specific classes, overriding any more generic settings

Set Tomcat logging timezone - switching summer time (daylight saving) automatically

2008-04-01 Thread Albert Yu
I found that if you add -Duser.timezone=Europe/London into JAVA_OPTS in catalina.sh, all tomcat logging will use BST at summer time, but -Duser.timezone=BST does NOT work. Hope this is useful for somebody. Albert Yu (Yizhuan Yu

Tomcat Logging Wrong time in tomcat logs

2008-01-28 Thread Mon Cab
Good day I am not sure why but tomcat seems to have started logging the incorrect time in logs. My server is on PDT, and tomcat is logging 8 hours ahead in the logs (GMT). Eg when it is 2008-01-28 20:53 tomcat is logging 2008-01-29 04:53:07,199 Any insight into why tomcat is doing this, and

Re: Tomcat Logging Wrong time in tomcat logs

2008-01-28 Thread Mon Cab
Note This problem does not seem to ba due to the JVM having an incorrect value for the timezone. I ran the following code : import java.util.Date; import java.util.TimeZone; public class TimeTest { public static void main(String args[]) { long time =

Re: Tomcat Logging Configuration

2007-09-06 Thread Lionel Crine
Ole Ersoy a écrit : Hi, I'm trying to point the catalina handler to /var/log/apache-tomcat like by configuring the logging.properties file like this: 1catalina.org.apache.juli.FileHandler.level = FINE 1catalina.org.apache.juli.FileHandler.directory = /var/log/apache-tomcat/

Tomcat Logging Configuration

2007-08-29 Thread Ole Ersoy
Hi, I'm trying to point the catalina handler to /var/log/apache-tomcat like by configuring the logging.properties file like this: 1catalina.org.apache.juli.FileHandler.level = FINE 1catalina.org.apache.juli.FileHandler.directory = /var/log/apache-tomcat/

Precompiling JSP pages getting cannot be found: org/apache/tomcat/logging/Logger error

2007-04-02 Thread Venkatesh Jayaraman \(jvenky\)
Hello Pre compiling the JSP pages we get following error A class needed by class org.apache.jasper.JspC cannot be found: org/apache/tomcat/logging/Logger Which tomcat jar has this class defined? Any help? -Venky

Re: Precompiling JSP pages getting cannot be found: org/apache/tomcat/logging/Logger error

2007-04-02 Thread Rashmi Rubdi
Did you search on Google for answers? Add commons-logging.jar to the lib folder and make sure it is in the classpath of your build file. -Rashmi - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail:

Tomcat logging problem

2006-10-03 Thread Tejas Dhedia
Hi, I am running tomcat 5.5.17 under opensuse 10.1 and my JVM version is 1.5.0_06. I am running my tomcat as a seperate tomcat user and starting it at boot time using the following script in /etc/init.d. #!/bin/sh # # Startup script for Tomcat JAVA_HOME=/usr/lib/jvm/java export JAVA_HOME

RE: Tomcat logging problem

2006-10-03 Thread Rick Fisk
change over time. -Original Message- From: Tejas Dhedia [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 6:00 PM To: users@tomcat.apache.org Subject: Tomcat logging problem Hi, I am running tomcat 5.5.17 under opensuse 10.1 and my JVM version is 1.5.0_06. I am running my tomcat

filtering tomcat logging using default logging configuration

2006-05-22 Thread David Goodenough
I have a web application which is using a library which is generating too many messages. These are routed to catalina.out and all come from a particular producer (org.jgroups. is the prefix). I do not want to rework the logging to use log4j or the like, but I would like to suppress these WARN

Re: Tomcat Logging

2006-03-31 Thread Martin Gainty
Good Morning Joe- Im going to take a guess at context debug=0 in server.xml??? Anyone else ??? Martin-- - Original Message - From: Joe Mun [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Thursday, March 30, 2006 3:06 PM Subject: Tomcat Logging Is it possible

Tomcat Logging

2006-03-30 Thread Joe Mun
Is it possible to turn off Catalina's Commons logging (from org.apache.catalina.*) in Tomcat 5.0 without changing the debug level in log4j? Problem is I use log4j/commons for my application and don't need to bother with the tomcat logs. Unfortunately, Tomcat spits out a TON of DEBUG level

Re: Tomcat Logging

2006-03-30 Thread Boris Unckel
Hello Joe, Joe Mun wrote: Is it possible to turn off Catalina's Commons logging (from org.apache.catalina.*) in Tomcat 5.0 without changing the debug level in log4j? Problem is I use log4j/commons for my application and don't need to bother with the tomcat logs. Unfortunately, Tomcat spits

tomcat logging from startup.bat

2006-01-26 Thread David Durham
Hi- I'm using apache-tomcat-5.5.15 that I downloaded about 15 minutes ago. My installation is just to unzip to a directory, and run startup.bat. Strangely, the logger is set to debug somehow. The end the startup script because of a ton of digester DEBUG log statements going to the console.

Re: tomcat logging from startup.bat

2006-01-26 Thread David Durham
David Durham wrote: Hi- I'm using apache-tomcat-5.5.15 that I downloaded about 15 minutes ago. My installation is just to unzip to a directory, and run startup.bat. Strangely, the logger is set to debug somehow. The end the startup script because of a ton of digester DEBUG log statements

Re: Tomcat logging - Persistence of Logs

2005-11-02 Thread Ronald Klop
Move the file to a new name in your startup script. On Mon Oct 31 12:59:07 CET 2005 Tomcat Users List users@tomcat.apache.org wrote: I have a problem with log files. I have a customer who has Tomcat 5.0.28 running on Windows 2003 Server. The main output is being logged to stdout.log in the

Tomcat logging - Persistence of Logs

2005-10-31 Thread Tom Burke
I have a problem with log files. I have a customer who has Tomcat 5.0.28 running on Windows 2003 Server. The main output is being logged to stdout.log in the tomcat/logs directory - this is the Windows equivalent of catalina.out on a linux/unix system. The problem is that for good reasons the

RE: Tomcat logging - Persistence of Logs

2005-10-31 Thread Steve Kirk
Message- From: Tom Burke [mailto:[EMAIL PROTECTED] Sent: Monday 31 October 2005 11:59 To: Tomcat Users List Subject: Tomcat logging - Persistence of Logs I have a problem with log files. I have a customer who has Tomcat 5.0.28 running on Windows 2003 Server. The main output

RE: Tomcat logging - Persistence of Logs

2005-10-31 Thread Steve Kirk
October 2005 16:21 To: Tomcat Users List Subject: Re: Tomcat logging - Persistence of Logs Indeed, I have a daily log already but it doesn't seem to be as verbose as the stdout.log. I was just wondering if the default log - stdout.log in Windows, catalina.out in linux - could be made