Created
August 15, 2011 16:40
-
-
Save dbrady/1147154 to your computer and use it in GitHub Desktop.
logger methods expect a block, not a msg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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