Clone URL (Committers only):
https://cms.apache.org/redirect?new=anonymous;action=diff;uri=http://tomee.apache.org/configuring-logging-in-tests.mdtext
Erik
Index: trunk/content/configuring-logging-in-tests.mdtext
===================================================================
--- trunk/content/configuring-logging-in-tests.mdtext (revision 1655892)
+++ trunk/content/configuring-logging-in-tests.mdtext (working copy)
@@ -1,114 +1,36 @@
Title: Configuring Logging in Tests
-<a name="ConfiguringLogginginTests-embedded.logging.properties"></a>
-# embedded.logging.properties
-When in embedded mode OpenEJB uses an embedded.logging.properties file
-packed in our openejb-core jar which use to configure the logging. This
-logging configuration is a bit lighter than the conf/logging.properties
-file created in a full standalone OpenEJB setup.
+<a name="ConfiguringLogginginTests-AdjustingLoggingLevels"></a>
+# Adjusting Logging Levels
-When searching for any config file in the classpath, multiple files with
-the same name may exist. OpenEJB will always attempt to favor the one
-closest to the openejb.base variable. This variable is set by default to
-the current directory where your vm is executing, which is more than likely
-the directory of your current module. So simply adding a file named
-embedded.logging.properties to your module may be all that you need to
-specify a new logging configuration for your tests.
+You can put adjust logging levels by passing properties to the InitialContext:
-Alternatively, you can set "openejb.logger.external" to "true" as a system
-property (will not work as an InitialContext property). Then OpenEJB will
-not attempt to configure logging at all and you can configure logging with
-Log4j directly using any of its APIs; xml, properties, or code.
-
-There are a couple good reasons for *not* replacing the
-embedded.logging.properties file.
-
-1. If you want to just change 5% of the logging settings, why take control
-over the other 95% as well.
-1. We do occasionally add new logging categories. If you are not replacing
-the embedded.logging.properties you will pick these up automatically when
-you upgrade.
-
-<a name="ConfiguringLogginginTests-Overriding(recommended)"></a>
-# Overriding (recommended)
-
-As mentioned in [Embedded Configuration](embedded-configuration.html)
- much can be done with simple overriding. The default
-embedded.logging.properties is quite good and there is really no need to
-replace it completely if all you want to do is tweak a few values.
-
-You can also put logging tweaks right in your InitialContext properties
-like so:
-
-
Properties p = new Properties();
p.put(Context.INITIAL_CONTEXT_FACTORY,
"org.apache.openejb.core.LocalInitialContextFactory");
- p.put("log4j.rootLogger", "fatal,C");
- p.put("log4j.category.OpenEJB", "warn");
- p.put("log4j.category.OpenEJB.options", "info");
- p.put("log4j.category.OpenEJB.server", "info");
- p.put("log4j.category.OpenEJB.startup", "info");
- p.put("log4j.category.OpenEJB.startup.service", "warn");
- p.put("log4j.category.OpenEJB.startup.config", "info");
- p.put("log4j.category.OpenEJB.hsql", "info");
- p.put("log4j.category.CORBA-Adapter", "info");
- p.put("log4j.category.Transaction", "warn");
- p.put("log4j.category.org.apache.activemq", "error");
- p.put("log4j.category.org.apache.geronimo", "error");
- p.put("log4j.category.openjpa", "error");
- p.put("log4j.appender.C", "org.apache.log4j.ConsoleAppender");
- p.put("log4j.appender.C.layout", "org.apache.log4j.SimpleLayout");
+ // Accept logging levels FINE and FINEST
+
p.put("org.apache.openejb.util.JuliLogStreamFactory$OpenEJBSimpleLayoutHandler.level",
"FINEST");
+
+
+ p.put("OpenEJB.level", "WARNING");
+ p.put("OpenEJB.options.level", "INFO");
+ p.put("OpenEJB.server.level", "INFO");
+ p.put("OpenEJB.startup.level", "INFO");
+ p.put("OpenEJB.startup.service.level", "WARNING");
+ p.put("OpenEJB.startup.config.level", "INFO");
+ p.put("OpenEJB.hsql.level", "INFO");
+ p.put("CORBA-Adapter.level", "INFO");
+ p.put("Transaction.level", "WARNING");
+ p.put("org.apache.activemq.level", "SEVERE");
+ p.put("org.apache.geronimo.level", "SEVERE");
+ p.put("openjpa.level", "SEVERE");
Context context = new InitialContext(p);
-
-Essentially, everything starting with "log4j." gets applied as overrides on
-top of the embedded.logging.properties we find in the classpath. This
-makes it possible to easily tweak the log levels while debugging a
-particular test.
-
Note, that InitialContext properties can also be supplied in a
jndi.properties file in the classpath or via system properties. The
-overriding order is as follows: 1 = highest, 4 = lowest.
+overriding order is as follows: 1 = highest, 3 = lowest.
1. InitialContext properties
1. jndi.properties in classpath
-1. system propertes
-1. embedded.logging.properties in classpath
-
-By default there are no logging settings in 1-3, so #4 is the only source
-of logging information.
-
-<a
name="ConfiguringLogginginTests-Defaultembedded.logging.propertiescontents"></a>
-# Default embedded.logging.properties contents
-
-For your purposes, here are the contents of the default
-embedded.logging.properties file contained in OpenEJB 3.1.1
-
-
- log4j.rootLogger = fatal,C
- log4j.category.OpenEJB = warn
- log4j.category.OpenEJB.server = info
- log4j.category.OpenEJB.startup = info
- log4j.category.OpenEJB.startup.service = warn
- log4j.category.OpenEJB.startup.config = info
- log4j.category.OpenEJB.hsql = info
- log4j.category.CORBA-Adapter = info
- log4j.category.Transaction = warn
- log4j.category.org.apache.activemq = error
- log4j.category.org.apache.geronimo = error
- log4j.category.openjpa = error
-
- log4j.appender.C = org.apache.log4j.ConsoleAppender
- log4j.appender.C.layout = org.apache.log4j.SimpleLayout
-
-
-Here is that file's location in svn as well as all of the previous
-versions. Future versions will follow the same pattern.
-
--
[http://svn.apache.org/repos/asf/openejb/tags/openejb-3.1.1/container/openejb-core/src/main/resources/embedded.logging.properties](http://svn.apache.org/repos/asf/openejb/tags/openejb-3.1.1/container/openejb-core/src/main/resources/embedded.logging.properties)
--
[http://svn.apache.org/repos/asf/openejb/tags/openejb-3.1/container/openejb-core/src/main/resources/embedded.logging.properties](http://svn.apache.org/repos/asf/openejb/tags/openejb-3.1/container/openejb-core/src/main/resources/embedded.logging.properties)
--
[http://svn.apache.org/repos/asf/openejb/tags/openejb-3.0/container/openejb-core/src/main/resources/embedded.logging.properties](http://svn.apache.org/repos/asf/openejb/tags/openejb-3.0/container/openejb-core/src/main/resources/embedded.logging.properties)
--
[http://svn.apache.org/repos/asf/openejb/tags/openejb-3.0-beta-2/container/openejb-core/src/main/resources/embedded.logging.properties](http://svn.apache.org/repos/asf/openejb/tags/openejb-3.0-beta-2/container/openejb-core/src/main/resources/embedded.logging.properties)
--
[http://svn.apache.org/repos/asf/openejb/tags/openejb-3.0-beta-1/container/openejb-core/src/main/resources/embedded.logging.properties](http://svn.apache.org/repos/asf/openejb/tags/openejb-3.0-beta-1/container/openejb-core/src/main/resources/embedded.logging.properties)
+1. system propertes
\ No newline at end of file