You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2015/09/08 00:53:31 UTC

logging-log4j2 git commit: Better comment.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master c9bb8d56e -> 5de8dacea


Better comment.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/5de8dace
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/5de8dace
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/5de8dace

Branch: refs/heads/master
Commit: 5de8daceacf3f1c7c76aec436b21810222a6112b
Parents: c9bb8d5
Author: ggregory <gg...@apache.org>
Authored: Mon Sep 7 15:53:28 2015 -0700
Committer: ggregory <gg...@apache.org>
Committed: Mon Sep 7 15:53:28 2015 -0700

----------------------------------------------------------------------
 .../main/java/org/apache/logging/log4j/core/AbstractLifeCycle.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/5de8dace/log4j-core/src/main/java/org/apache/logging/log4j/core/AbstractLifeCycle.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/AbstractLifeCycle.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/AbstractLifeCycle.java
index f4fabab..7dcf9a7 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/AbstractLifeCycle.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/AbstractLifeCycle.java
@@ -99,7 +99,7 @@ public class AbstractLifeCycle implements LifeCycle, Serializable {
     protected void setState(final LifeCycle.State newState) {
         this.state = newState;
         // Need a better string than this.toString() for the message
-        // LOGGER.debug("{} {}", this.state, this);
+        // LOGGER.trace("{} {}", this.state, this);
     }
 
     protected void setStopped() {