我的 Rails 记录器配置当前记录当前时间和 UUID,如下所示:
config.logger = ActiveSupport::TaggedLogging.new(Logger.new("#{Rails.root}/log/#{ENV['RAILS_ENV']}.log", 'daily'))
config.log_tags = [Proc.new {Time.now.strftime('%Y-%m-%d %H:%M:%S.%L')}, :uuid]
有没有办法同时记录当前消息的日志级别?
即,如果我调用 logger.debug,标签 [DEBUG] 就会添加到消息中。
Railscasts 展示了如何通过重写 SimpleFormatter#call 方法来重写记录器以输出日志消息的严重性:
class Logger::SimpleFormatter
def call(severity, time, progname, msg)
"[#{severity}] #{msg}\n"
end
end
有关详细信息,请参阅 http://railscasts.com/episodes/56-the-logger-revised。
我们无法更改来自数据库过程的消息,但我们只能通过显示时间并更改其颜色和严重性来更改日志的外观。
使用以下代码更新日志。 将以下代码粘贴到需要在
config/initilizers
创建的新文件中
.
class ActiveSupport::Logger::SimpleFormatter
SEVERITY_TO_TAG_MAP = {'DEBUG'=>'meh', 'INFO'=>'fyi', 'WARN'=>'hmm', 'ERROR'=>'wtf', 'FATAL'=>'omg', 'UNKNOWN'=>'???'}
SEVERITY_TO_COLOR_MAP = {'DEBUG'=>'0;37', 'INFO'=>'32', 'WARN'=>'33', 'ERROR'=>'31', 'FATAL'=>'31', 'UNKNOWN'=>'37'}
USE_HUMOROUS_SEVERITIES = true
def call(severity, time, progname, msg)
if USE_HUMOROUS_SEVERITIES
formatted_severity = sprintf("%-3s",SEVERITY_TO_TAG_MAP[severity])
else
formatted_severity = sprintf("%-5s",severity)
end
formatted_time = time.strftime("%Y-%m-%d %H:%M:%S.") << time.usec.to_s[0..2].rjust(3)
color = SEVERITY_TO_COLOR_MAP[severity]
"\033[0;37m#{formatted_time}\033[0m [\033[#{color}m#{formatted_severity}\033[0m] #{msg.strip} (pid:#{$$})\n"
end
结束
我将 MyApp::Application.config.log_level 添加到日志标签中,它对我有用。
config.log_tags = [Proc.new {Time.now.strftime('%Y-%m-%d %H:%M:%S.%L')}, :uuid, Proc.new {MyApp::Application.config.log_level}]