Skip to content

Commit

Permalink
ATS-33
Browse files Browse the repository at this point in the history
  • Loading branch information
madness-inc committed Oct 18, 2022
1 parent ed7aa39 commit 0cb001c
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -81,13 +81,13 @@ public void onMessage(Message<byte[]> message) {
sessions.remove(s.getId());
});
// @formatter:on
log.info(String.format("Received %s for site %s, clearing %s local sessions!", eventType, siteName,
count.get()));
log.info(String.format("Received %s for site %s from %s, cleared %s local sessions!", eventType,
siteName, message.getPublishingMember().getAddress(), count.get()));
}
} catch (ReflectiveOperationException c) {
log.warn("Error reading event", c);
log.warn(String.format("Reading event caused %s: %s", c.getClass().getName(), c.getMessage()));
} catch (Throwable t) {
log.error("Error reading event", t);
log.error("Error processing event", t);
}
}
}
Expand Down

0 comments on commit 0cb001c

Please sign in to comment.