Class: Logger::Formatter

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

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.



452
453
454
# File 'lib/logger.rb', line 452

def initialize
  @datetime_format = nil
end

Instance Attribute Details

#datetime_formatObject

Returns the value of attribute datetime_format.



450
451
452
# File 'lib/logger.rb', line 450

def datetime_format
  @datetime_format
end

Instance Method Details

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



456
457
458
459
# File 'lib/logger.rb', line 456

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