Skip to content

Commit

Permalink
Crank down logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Jan 15, 2025
1 parent cf76e80 commit 4cb0feb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static void logClientHttpReqResponseDetails(@NonNull final HttpMethod met
public static void logMessagingEventDetails(final String event) {
try {
MDC.putCloseable("messageEvent", event);
log.info("");
log.debug("");
MDC.clear();
} catch (final Exception exception) {
log.error(EXCEPTION, exception);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void subscribe() {
private MessageHandler onMessage() {
return (Message message) -> {
if (message != null) {
log.info("Message received is :: {} ", message);
log.debug("Message received is :: {} ", message);
try {
final var eventString = new String(message.getData());
LogHelper.logMessagingEventDetails(eventString);
Expand Down

0 comments on commit 4cb0feb

Please sign in to comment.