我正在使用 Rails 3.2.12/Ruby 1.9.3 并尝试设置多个记录器,以便我可以记录到文件和我们设置的 graylog 服务器。我已经接近使用这个解决方案,但使用 Gelf 记录器 - http://railsware.com/blog/2014/08/07/rails-logging-into-several-backends/
因此,我已将其移植ActiveSupport::Logger
到我的配置/初始化程序并设置 gelf 记录器,如下所示
(development.rb)
gelf_logger = GELF::Logger.new("greylogserver", 12201, "WAN", { :host => 'host', :facility => "railslog"})
Rails.logger.extend(ActiveSupport::Logger.broadcast(gelf_logger))
但是我发现我只会将错误记录到 graylog 服务器
ArgumentError: short_message is missing. Options version, short_message and host must be set.
当我调试代码时,我可以看到传递给 Gelf Loggeradd
方法(如下)的参数始终将第一个元素作为级别,第二个元素为 nil,第三个元素包含消息。这令人困惑,因为第二个参数应该是消息,第三个应该是程序名称。我想出的唯一解决方案是通过将第 6 行更改为使用 args[1] 作为消息来更改 Gelf-rb gem(如下所示),然后它可以工作,但这并不理想,必须有一种方法来修复这在我的代码中。
def add(level, *args)
raise ArgumentError.new('Wrong arguments.') unless (0..2).include?(args.count)
# Ruby Logger's author is a maniac.
message, progname = if args.count == 2
[args[1], args[1]]
elsif args.count == 0
[yield, default_options['facility']]
elsif block_given?
[yield, args[0]]
else
[args[0], default_options['facility']]
end
....
请注意,当我直接将 Rails 记录器设置为在 development.rb 中使用 Gelf 记录器时,它可以正常工作
Rails.logger = GELF::Logger.new("greylogserver", 12201, "WAN", { :host => 'host', :facility => "railslog"})
所以它必须与我的实现有关ActiveSupport::Logger
,它来自这里 - https://github.com/rails/rails/blob/6329d9fa8b2f86a178151be264cccdb805bfaaac/activesupport/lib/active_support/logger.rb
任何帮助将非常感激