Skip to content

Commit

Permalink
Changing printing of value in getBulk to trace logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumanth Pasupuleti [email protected] committed Aug 7, 2020
1 parent 14429f8 commit 7b632f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1790,7 +1790,7 @@ private <T> Map<String, T> getBulk(final Collection<String> keys, Transcoder<T>
}
}

if (log.isDebugEnabled() && shouldLog()) log.debug("APP " + _appName + ", BULK : Data [" + decanonicalR + "]");
if (log.isDebugEnabled() && shouldLog()) log.debug("BulkGet; APP " + _appName + ", keys : " + keys + (log.isTraceEnabled() ? "; value : " + decanonicalR : ""));
if (event != null) endEvent(event);
return decanonicalR;
} catch (net.spy.memcached.internal.CheckedOperationTimeoutException ex) {
Expand Down

0 comments on commit 7b632f4

Please sign in to comment.