rpush gem禁用rails日志输出

时间:2014-12-15 18:29:41

标签: ruby-on-rails push-notification

我正在使用rpush gem向IOS和Android发送通知。每件事都有效。然而,rpush gem每隔几秒就会在log / production.log中创建日志。有没有办法从rpush gem禁用日志?

1 个答案:

答案 0 :(得分:0)

很丑,但是覆盖Logging方法应该可行。将以下内容放在初始化程序中,如rpush.rb或类似程序。

module Rpush
  class Logger
    def info(msg, inline = false)
    end

    def error(msg, inline = false)
    end

    def warn(msg, inline = false)
    end
  end
end