class Logger::Formatter
日志消息的默认格式化器。
常量
- DatetimeFormat
- Format
属性
公共类方法
公共实例方法
源代码
# File lib/logger/formatter.rb, line 15 def call(severity, time, progname, msg) sprintf(Format, severity, format_datetime(time), Process.pid, severity, progname, msg2str(msg)) end
私有实例方法
源代码
# File lib/logger/formatter.rb, line 21 def format_datetime(time) time.strftime(@datetime_format || DatetimeFormat) end
源代码
# File lib/logger/formatter.rb, line 25 def msg2str(msg) case msg when ::String msg when ::Exception "#{ msg.message } (#{ msg.class })\n#{ msg.backtrace.join("\n") if msg.backtrace }" else msg.inspect end end