Class: Logger::Formatter
- Inherits:
-
Object
- Object
- Logger::Formatter
- Defined in:
- lib/uicov/ruby_patches.rb
Constant Summary collapse
- MyFormat =
"[%s] %s: %s: %s\n"
Instance Method Summary collapse
Instance Method Details
#call(severity, time, progname, msg) ⇒ Object
8 9 10 11 |
# File 'lib/uicov/ruby_patches.rb', line 8 def call(severity, time, progname, msg) @datetime_format ||= "%H:%M:%S.%5N" MyFormat % [format_datetime(time), severity, progname, msg2str(msg)] end |