Skip to content

Instantly share code, notes, and snippets.

@mairbek
Created January 21, 2012 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mairbek/1652985 to your computer and use it in GitHub Desktop.
Save mairbek/1652985 to your computer and use it in GitHub Desktop.
Logging2
if (log.isDebugEnabled()) {
log.debug("Processing request" + request);
}
log.debug("Processed request {} sending response {}", request, response);
log.debug("Processed request " + request + " sending response " + response);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment