ARTEMIS-611 fix logging
This commit is contained in:
parent
057be30074
commit
707b51796a
|
@ -284,7 +284,9 @@ public class StompFrameHandlerV11 extends VersionedStompFrameHandler implements
|
|||
connectionTtl = ttlMax;
|
||||
clientPingResponse = (long) (ttlMax / heartBeatToTtlModifier);
|
||||
}
|
||||
ActiveMQServerLogger.LOGGER.info("Setting TTL to: " + connectionTtl);
|
||||
if (ActiveMQServerLogger.LOGGER.isDebugEnabled()) {
|
||||
ActiveMQServerLogger.LOGGER.debug("Setting STOMP client TTL to: " + connectionTtl);
|
||||
}
|
||||
connectionEntry.ttl = connectionTtl;
|
||||
|
||||
if (clientAcceptPing != 0) {
|
||||
|
|
|
@ -688,7 +688,6 @@ public class RemotingServiceImpl implements RemotingService, ServerConnectionLif
|
|||
@Override
|
||||
public void run() {
|
||||
while (!closed) {
|
||||
ActiveMQServerLogger.LOGGER.info("Checking...");
|
||||
try {
|
||||
long now = System.currentTimeMillis();
|
||||
|
||||
|
|
Loading…
Reference in New Issue