This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new 8b2be8ef3b ARTEMIS-4207 Removing logger.info added by accident
(temporary debug)
8b2be8ef3b is described below
commit 8b2be8ef3bdb417deb0edb274aa1dcba1aa4e1c6
Author: Clebert Suconic <[email protected]>
AuthorDate: Wed Mar 15 16:24:25 2023 -0400
ARTEMIS-4207 Removing logger.info added by accident (temporary debug)
---
.../activemq/artemis/core/protocol/core/ServerSessionPacketHandler.java | 2 --
1 file changed, 2 deletions(-)
diff --git
a/artemis-server/src/main/java/org/apache/activemq/artemis/core/protocol/core/ServerSessionPacketHandler.java
b/artemis-server/src/main/java/org/apache/activemq/artemis/core/protocol/core/ServerSessionPacketHandler.java
index e4f80a7c49..03ac2a8d5a 100644
---
a/artemis-server/src/main/java/org/apache/activemq/artemis/core/protocol/core/ServerSessionPacketHandler.java
+++
b/artemis-server/src/main/java/org/apache/activemq/artemis/core/protocol/core/ServerSessionPacketHandler.java
@@ -1128,10 +1128,8 @@ public class ServerSessionPacketHandler implements
ChannelHandler {
currentLargeMessage.setStorageManager(storageManager);
currentLargeMessage = null;
- logger.info("Sending {}", message.getMessageID());
try {
session.send(session.getCurrentTransaction(),
EmbedMessageUtil.extractEmbedded((ICoreMessage) message.toMessage(),
storageManager), false, producers.get(senderID), false);
- logger.info("Sending finished on {}", message.getMessageID());
} catch (Exception e) {
message.deleteFile();
throw e;