You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2014/08/08 18:26:40 UTC

git commit: https://issues.apache.org/jira/browse/AMQ-5316

Repository: activemq
Updated Branches:
  refs/heads/trunk e5ab933d2 -> 999385ea5


https://issues.apache.org/jira/browse/AMQ-5316

remove unused configuration entry to reduce confusion, can be added back
if ever needed to control additional logging.

Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/999385ea
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/999385ea
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/999385ea

Branch: refs/heads/trunk
Commit: 999385ea539c89240bc4b7949c5aa38aa51c3b77
Parents: e5ab933
Author: Timothy Bish <ta...@gmail.com>
Authored: Fri Aug 8 11:37:48 2014 -0400
Committer: Timothy Bish <ta...@gmail.com>
Committed: Fri Aug 8 11:37:48 2014 -0400

----------------------------------------------------------------------
 .../activemq/broker/util/LoggingBrokerPlugin.java      | 13 -------------
 1 file changed, 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/999385ea/activemq-broker/src/main/java/org/apache/activemq/broker/util/LoggingBrokerPlugin.java
----------------------------------------------------------------------
diff --git a/activemq-broker/src/main/java/org/apache/activemq/broker/util/LoggingBrokerPlugin.java b/activemq-broker/src/main/java/org/apache/activemq/broker/util/LoggingBrokerPlugin.java
index f21589a..82d4214 100644
--- a/activemq-broker/src/main/java/org/apache/activemq/broker/util/LoggingBrokerPlugin.java
+++ b/activemq-broker/src/main/java/org/apache/activemq/broker/util/LoggingBrokerPlugin.java
@@ -43,7 +43,6 @@ public class LoggingBrokerPlugin extends BrokerPluginSupport {
     private static final Logger LOG = LoggerFactory.getLogger(LoggingBrokerPlugin.class);
 
     private boolean logAll = false;
-    private boolean logMessageEvents = false;
     private boolean logConnectionEvents = true;
     private boolean logSessionEvents = true;
     private boolean logTransactionEvents = false;
@@ -85,16 +84,6 @@ public class LoggingBrokerPlugin extends BrokerPluginSupport {
         this.logAll = logAll;
     }
 
-    public boolean isLogMessageEvents() {
-        return logMessageEvents;
-    }
-
-    /**
-     * Logger Events that are related to message processing
-     */
-    public void setLogMessageEvents(boolean logMessageEvents) {
-        this.logMessageEvents = logMessageEvents;
-    }
 
     public boolean isLogConnectionEvents() {
         return logConnectionEvents;
@@ -604,8 +593,6 @@ public class LoggingBrokerPlugin extends BrokerPluginSupport {
         buf.append(isLogConsumerEvents());
         buf.append(", logProducerEvents=");
         buf.append(isLogProducerEvents());
-        buf.append(", logMessageEvents=");
-        buf.append(isLogMessageEvents());
         buf.append(", logTransactionEvents=");
         buf.append(isLogTransactionEvents());
         buf.append(", logInternalEvents=");