Method: Ougai::Logging#debug
- Defined in:
- lib/ougai/logging.rb
#debug(message = nil, ex = nil, data = nil, &block) ⇒ Boolean
Log any one or more of a message, an exception and structured data as DEBUG. If the block is given for delay evaluation, it returns them as an array or the one of them as a value.
41 42 43 |
# File 'lib/ougai/logging.rb', line 41 def debug( = nil, ex = nil, data = nil, &block) _log(DEBUG, , ex, data, &block) end |