Class: Logger::Formatter

Inherits:
Object
  • Object
show all
Defined in:
lib/logger/formatter.rb

Overview

Default formatter for log messages.

Constant Summary collapse

Format =
"%s, [%s#%d] %5s -- %s: %s\n"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeFormatter

Returns a new instance of Formatter.



10
11
12
# File 'lib/logger/formatter.rb', line 10

def initialize
  @datetime_format = nil
end

Instance Attribute Details

#datetime_formatObject

Returns the value of attribute datetime_format.



8
9
10
# File 'lib/logger/formatter.rb', line 8

def datetime_format
  @datetime_format
end

Instance Method Details

#call(severity, time, progname, msg) ⇒ Object



14
15
16
17
# File 'lib/logger/formatter.rb', line 14

def call(severity, time, progname, msg)
  Format % [severity[0..0], format_datetime(time), Process.pid, severity, progname,
    msg2str(msg)]
end