class Honeybadger::Logging::ConfigLogger

def supplement(msg, severity)

Experimental RBS support (using type sampling data from the type_fusion project).

def supplement: (String msg, Integer severity) -> String

This signature was generated using 4 samples from 1 application.

def supplement(msg, severity)
  return msg unless msg.kind_of?(String)
  r = msg.dup
  r << sprintf(INFO_SUPPLEMENT, severity, Process.pid)
  if severity == Logger::Severity::DEBUG && l = caller_location
    r << sprintf(DEBUG_SUPPLEMENT, l.dump)
  end
  r
end