I don't think we should be trying to taylor the logging output of
Geronimo to match what other component communities have for their
projects.
I'm okay with with levels for axis, though I think FATAL is not the
correct level to limit them at by default. In most cases I would
expect to see INFO+ captured in log files, but when limiting logger
levels like this they will never make it to the file appender.
But the others, like httpclient for example. Users may be using
Geronimo w/o any WS muck, using httpclient and expecting to see log
messages. Limiting these logger here is a very bad idea, as it will
leave those users wonder where the logs went and causing them to ping
the lists asking what is going on.
* * *
In general I'm -1 on limiting loggers to FATAL, unless for some
reason the component spits out a ton of ERROR messages, and similarly
I'm -1 on limiting loggers to ERROR unless they spit out a ton of
WARN messages. And in both cases if those libraries are spitting out
so much junk, then we are either integrating them improperly or their
codebase is incorrectly using logging... in both cases something
should be fixed, we shouldn't be silently ignoring them.
* * *
What is the output of these loggers w/o the limits?
--jason
On Apr 4, 2007, at 1:39 PM, Donald Woods wrote:
The log4j.properties used by Axis2 includes those 4 values set to
FATAL, so I'm trying to match our log output to what the Axis2
community is used to seeing and ships today.
Also, adding these values into our file allows users to easily see
how to turn on debug info for a component (Axis and Axis2 in this
case) without having to dig through the component source or pinging
our user mailing list for the info.....
-Donald
Jason Dillon wrote:
Why?
I don't think its a good idea to keep growing the list of logger
levels in our log4j configuration file like this. For one or two
its okay, but probably not for so many. I mean, do these
libraries really spit out so much information that we have to
limit them all to FATAL?
The default output level is currently set to WARN unless the -v or
-vv flag is passed to the server, which will set to DEBUG and
TRACE respectively. With logger levels set explicitly , then
adding -v or -vv will have zero affect. And the way we currently
configure these levels affect both the console and log files.
I think that changing these levels to FATAL is harmful and should
be reverted... unless there is a really good reason for it...
which is what I'm asking right now. What is the reason we need to
have these explicit logger levels configured here?
--jason
On Apr 4, 2007, at 1:05 PM, [EMAIL PROTECTED] wrote:
Author: dwoods
Date: Wed Apr 4 13:05:30 2007
New Revision: 525594
URL: http://svn.apache.org/viewvc?view=rev&rev=525594
Log:
GERONIMO-3064 Add axis2 log4j configure properties so that people
can turn on axis2 logs in geronimo. Thanks Lin. I also added
the Axis v1 log categories.
Modified:
geronimo/server/trunk/assemblies/geronimo-boilerplate-minimal/
src/main/resources/var/log/server-log4j.properties
Modified: geronimo/server/trunk/assemblies/geronimo-boilerplate-
minimal/src/main/resources/var/log/server-log4j.properties
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/
assemblies/geronimo-boilerplate-minimal/src/main/resources/var/
log/server-log4j.properties?view=diff&rev=525594&r1=525593&r2=525594
====================================================================
==========
--- geronimo/server/trunk/assemblies/geronimo-boilerplate-minimal/
src/main/resources/var/log/server-log4j.properties (original)
+++ geronimo/server/trunk/assemblies/geronimo-boilerplate-minimal/
src/main/resources/var/log/server-log4j.properties Wed Apr 4
13:05:30 2007
@@ -115,10 +115,22 @@
# Prints various stuff during startup
log4j.logger.org.apache.juddi.registry.RegistryServlet=WARN
-
# Prints various stuff when the portal is used
log4j.logger.org.apache.pluto.portalImpl.Servlet=WARN
+
# Prints stuff for AJAX calls
log4j.logger.uk.ltd.getahead.dwr.impl.DefaultConfiguration=WARN
log4j.logger.uk.ltd.getahead.dwr.impl.ExecuteQuery=WARN
log4j.logger.uk.ltd.getahead.dwr.util.Logger=WARN
+
+# Axis log output
+log4j.logger.org.apache.axis.enterprise=FATAL
+log4j.logger.org.apache.axis.TIME=OFF
+log4j.logger.org.apache.axis.EXCEPTIONS=FATAL
+
+# Axis2 log output
+log4j.logger.org.apache.axis2.enterprise=FATAL
+log4j.logger.de.hunsicker.jalopy.io=FATAL
+log4j.logger.httpclient.wire.header=FATAL
+log4j.logger.org.apache.commons.httpclient=FATAL
+