class Sentry::StructuredLogger

def debug(message, parameters = [], **attributes)

Returns:
  • (LogEvent, nil) - The created log event or nil if logging is disabled

Parameters:
  • attributes (Hash) -- Additional attributes to include with the log
  • parameters (Array) -- Array of values to replace template parameters in the message
  • message (String) -- The log message
def debug(message, parameters = [], **attributes)
  log(__method__, message, parameters: parameters, **attributes)
end