From 5a64bf30d61407656b10f1f3fc1cb979810f7e94 Mon Sep 17 00:00:00 2001
From: Robert Burrell Donkin LogFactoryImpl.java
for details.
+JCL is distributed with a very simple Log implementation named
+org.apache.commons.logging.impl.SimpleLog. This is intended to be a minimal
+implementation and those requiring a fully functional open source logging system are
+directed to Log4J.
+
+ SimpleLog sends all (enabled) log messages,
+ for all defined loggers, to System.err. The following system properties
+ are supported to configure the behavior of this logger:
tracedebuginfowarnerrorfatalinfo. tracedebuginfowarnerrorfataltrue if you want the Log instance name to be
+ included in output messages. Defaults to false.true if you want the last component of the name to be
+ included in output messages. Defaults to true.true if you want the current date and time
+ to be included in output messages. Default is false.java.text.SimpleDateFormat. If the format is not
+ specified or is invalid, the default format is used.
+ The default format is yyyy/MM/dd HH:mm:ss:SSS zzz.
+In addition to looking for system properties with the names specified
+above, this implementation also checks for a class loader resource named
+"simplelog.properties", and includes any matching definitions
+from this resource (if it exists).
+