Methods
Constants
| Format | = | "%s, [%s#%d] %5s -- %s: %s\n" |
Attributes
| [RW] | datetime_format |
Public Class methods
[ show source ]
# File activesupport/lib/active_support/core_ext/logger.rb, line 81
81: def initialize
82: @datetime_format = nil
83: end
Public Instance methods
[ show source ]
# File activesupport/lib/active_support/core_ext/logger.rb, line 85
85: def call(severity, time, progname, msg)
86: Format % [severity[0..0], format_datetime(time), $$, severity, progname,
87: msg2str(msg)]
88: end