module Ougai::Logging
def debug(message = nil, ex = nil, data = nil, &block)
-
(Boolean)
- true
Other tags:
- Yieldreturn: - Any one or more of former parameters
Parameters:
-
data
(Object
) -- Any structured data -
ex
(Exception
) -- The exception or the error -
message
(String
) -- The message to log. Use default_message if not specified.
def debug(message = nil, ex = nil, data = nil, &block) _log(DEBUG, message, ex, data, &block) end