mirror of https://github.com/apache/activemq.git
remove unused configuration entry to reduce confusion, can be added back if ever needed to control additional logging.
This commit is contained in:
parent
e5ab933d2d
commit
999385ea53
|
@ -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=");
|
||||
|
|
Loading…
Reference in New Issue