From 5e61a0932ea214198c8463c4ec63e49e1920e585 Mon Sep 17 00:00:00 2001 From: Robert Burrell Donkin Date: Sun, 6 Jun 2004 20:47:56 +0000 Subject: [PATCH] Java doc improvements. Patch contributed by Dennis Lundberg. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@139041 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/logging/impl/SimpleLog.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/java/org/apache/commons/logging/impl/SimpleLog.java b/src/java/org/apache/commons/logging/impl/SimpleLog.java index 3d3e72f..426b6f2 100644 --- a/src/java/org/apache/commons/logging/impl/SimpleLog.java +++ b/src/java/org/apache/commons/logging/impl/SimpleLog.java @@ -70,14 +70,14 @@ import org.apache.commons.logging.LogConfigurationException; * @author Rod Waldhoff * @author Robert Burrell Donkin * - * @version $Id: SimpleLog.java,v 1.20 2004/05/30 10:32:06 rdonkin Exp $ + * @version $Id: SimpleLog.java,v 1.21 2004/06/06 20:47:56 rdonkin Exp $ */ public class SimpleLog implements Log, Serializable { // ------------------------------------------------------- Class Attributes - /** All system properties used by Simple start with this */ + /** All system properties used by SimpleLog start with this */ static protected final String systemPrefix = "org.apache.commons.logging.simplelog."; @@ -91,9 +91,9 @@ public class SimpleLog implements Log, Serializable { /** Include the instance name in the log message? */ static protected boolean showLogName = false; /** Include the short name ( last component ) of the logger in the log - message. Default to true - otherwise we'll be lost in a flood of - messages without knowing who sends them. - */ + * message. Defaults to true - otherwise we'll be lost in a flood of + * messages without knowing who sends them. + */ static protected boolean showShortName = true; /** Include the current time in the log message */ static protected boolean showDateTime = false;