From fa2dd91b6dc057809990ebc21151232932374810 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 26 Nov 2023 15:07:16 -0500 Subject: [PATCH] Javadoc --- .../java/org/apache/commons/logging/impl/SimpleLog.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/logging/impl/SimpleLog.java b/src/main/java/org/apache/commons/logging/impl/SimpleLog.java index b3a845f..2b4c1e4 100644 --- a/src/main/java/org/apache/commons/logging/impl/SimpleLog.java +++ b/src/main/java/org/apache/commons/logging/impl/SimpleLog.java @@ -84,9 +84,10 @@ public class SimpleLog implements Log, Serializable { /** Include the instance name in the log message? */ static volatile protected boolean showLogName; - /** Include the short name ( last component ) of the logger in the log - * message. Defaults to true - otherwise we'll be lost in a flood of - * messages without knowing who sends them. + /** + * Include the short name (last component) of the logger in the log + * message. Defaults to true - otherwise we'll be lost in a flood of + * messages without knowing who sends them. */ static volatile protected boolean showShortName = true; @@ -238,7 +239,7 @@ public class SimpleLog implements Log, Serializable { // Set initial log level // Used to be: set default log level to ERROR - // IMHO it should be lower, but at least info ( costin ). + // IMHO it should be lower, but at least info (costin). setLevel(SimpleLog.LOG_LEVEL_INFO); // Set log level from properties