仅显示消息的简单格式化器。
方法
- C
实例公共方法
call(severity, timestamp, progname, msg) 链接
当发生日志事件时,会调用此方法。
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/logger.rb, line 41 def call(severity, timestamp, progname, msg) "#{String === msg ? msg : msg.inspect}\n" end