Method: F4R::F4RLogger#debug
- Defined in:
- lib/f4r.rb
#debug(msg = '', items = {}) {|block| ... } ⇒ String
DEBUG level messages.
Example:
>> Log.debug [self.class, __method__], {a:1, b:2}
=> DEBUG <F4R::Record#fields> a: 1 b: 2
223 224 225 |
# File 'lib/f4r.rb', line 223 def debug(msg = '', items = {}, &block) logger.debug((msg, items), &block) end |