Skip to content

Instantly share code, notes, and snippets.

@dbrady
Created August 15, 2011 16:40
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 dbrady/1147154 to your computer and use it in GitHub Desktop.
Save dbrady/1147154 to your computer and use it in GitHub Desktop.
logger methods expect a block, not a msg
log.debug false
# STDOUT => D, [2011-08-15T10:38:03.868973 #7762] DEBUG -- : nil
# => true
log.debug { false }
# STDOUT => D, [2011-08-15T10:38:08.492862 #7762] DEBUG -- : false
# => true
log.log Logger::DEBUG, false
# STDOUT => D, [2011-08-15T10:38:27.956344 #7762] DEBUG -- : false
# => true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment