Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2012-09-21 01:25:58 +0000
committerJan Bartel2012-09-21 01:25:58 +0000
commitaf233a8a37581aa7805378a378d191c290731490 (patch)
tree16a99613decd09a819b66cdc134fb1fc85e6452c
parent1c5d00738409955d9164b0288e38136ad59e9141 (diff)
downloadorg.eclipse.jetty.project-af233a8a37581aa7805378a378d191c290731490.tar.gz
org.eclipse.jetty.project-af233a8a37581aa7805378a378d191c290731490.tar.xz
org.eclipse.jetty.project-af233a8a37581aa7805378a378d191c290731490.zip
389686 Fix reference to org.eclipse.jetty.util.log.stderr.LONG system property in javadoc for StdErrLog
-rw-r--r--jetty-util/src/main/java/org/eclipse/jetty/util/log/StdErrLog.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/log/StdErrLog.java b/jetty-util/src/main/java/org/eclipse/jetty/util/log/StdErrLog.java
index c641fd682d..39f0fa918e 100644
--- a/jetty-util/src/main/java/org/eclipse/jetty/util/log/StdErrLog.java
+++ b/jetty-util/src/main/java/org/eclipse/jetty/util/log/StdErrLog.java
@@ -31,12 +31,11 @@ import org.eclipse.jetty.util.DateCache;
* the eclipse jetty root level logger level to that specified level. (Default level is INFO)
* <p>
* If the system property "org.eclipse.jetty.util.log.SOURCE" is set, then the source method/file of a log is logged.
- * For named debuggers, the system property name+".SOURCE" is checked. If it is not not set, then
- * "org.eclipse.jetty.util.log.SOURCE" is used as the default.
+ * For named debuggers, the system property name+".SOURCE" is checked, eg "org.eclipse.jetty.util.log.stderr.SOURCE".
+ * If it is not not set, then "org.eclipse.jetty.util.log.SOURCE" is used as the default.
* <p>
- * If the system property "org.eclipse.jetty.util.log.LONG" is set, then the full, unabbreviated name of the logger is
- * used for logging. For named debuggers, the system property name+".LONG" is checked. If it is not not set, then
- * "org.eclipse.jetty.util.log.LONG" is used as the default.
+ * If the system property "org.eclipse.jetty.util.log.stderr.LONG" is set, then the full, unabbreviated name of the logger is
+ * used for logging.
*/
public class StdErrLog extends AbstractLogger
{

Back to the top