class Litejob::Processor

def log(event, msg: nil)

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

def log: (Symbol event, msg: nil) -> true?

This signature was generated using 70 samples from 4 applications.

def log(event, msg: nil)
  prefix = "[litejob]:[#{event.to_s.upcase}]"
  Litejob.logger.info [prefix, @log_context, msg].compact.join(" ")
end