класс Logger::Formatter
По умолчанию используется для форматирования сообщений журнала.
Константы
- DatetimeFormat
- Формат
Атрибуты
datetime_format[RW]
Общедоступные методы класса
# File lib/logger/formatter.rb, line 11 def initialize @datetime_format = nil end
Общедоступные методы экземпляра
# 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
Ruby Core © 1993–2022 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.