Class: Sidekiq::Logging::Pretty

Inherits:
Logger::Formatter
  • Object
show all
Defined in:
lib/sidekiq/logging.rb

Instance Method Summary collapse

Instance Method Details

#call(severity, time, program_name, message) ⇒ Object

Provide a call() method that returns the formatted message.



9
10
11
# File 'lib/sidekiq/logging.rb', line 9

def call(severity, time, program_name, message)
  "#{time.utc.iso8601(3)} #{::Process.pid} TID-#{Thread.current.object_id.to_s(36)}#{context} #{severity}: #{message}\n"
end

#contextObject



13
14
15
16
# File 'lib/sidekiq/logging.rb', line 13

def context
  c = Thread.current[:sidekiq_context]
  c ? " #{c}" : ''
end