mirror of https://github.com/apache/activemq.git
Add some additional logs
This commit is contained in:
parent
8b993b4dc6
commit
19344991af
|
@ -371,6 +371,9 @@ class AmqpProtocolConverter implements IAmqpProtocolConverter {
|
||||||
LOG.trace("Dispatching End of Browse Command to consumer {}", md.getConsumerId());
|
LOG.trace("Dispatching End of Browse Command to consumer {}", md.getConsumerId());
|
||||||
}
|
}
|
||||||
consumerContext.onMessageDispatch(md);
|
consumerContext.onMessageDispatch(md);
|
||||||
|
if (md.getMessage() != null) {
|
||||||
|
LOG.trace("Finished Dispatch of MessageId: {} to consumer", md.getMessage().getMessageId());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if (command.getDataStructureType() == ConnectionError.DATA_STRUCTURE_TYPE) {
|
} else if (command.getDataStructureType() == ConnectionError.DATA_STRUCTURE_TYPE) {
|
||||||
// Pass down any unexpected async errors. Should this close the connection?
|
// Pass down any unexpected async errors. Should this close the connection?
|
||||||
|
|
Loading…
Reference in New Issue