exception_notification设置未被使用

时间:2013-05-01 14:52:15

标签: ruby-on-rails ruby ruby-on-rails-3 ruby-on-rails-3.1

我在development.rbstaging.rbproduction.rb

中有以下内容
config.middleware.use ExceptionNotifier,
  :email => {
    :email_prefix => "[Exception] ",
    :sender_address => %{"XXX" <XXX@example.com>},
    :exception_recipients => %w{XXX@ezample.com}
  }

Exception Notifier gem不会采用这些设置。它仍然使用默认值。

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:2)

嗯只是略过https://github.com/rails/exception_notification,似乎:email没有必要吗?

Whatever::Application.config.middleware.use ExceptionNotifier,
  :email_prefix => "[Exception] ",
  :sender_address => %{"XXX" <XXX@XXX.com>},
  :exception_recipients => %w{XXX@XXX.com}

修改 以上仅适用于gem exception_notifier(通过gem install exception_notifier签出的内容(忽略误导性的github URL)

但你可能想要使用更新的gem:gem install exception_notification这是更新宝石的名称(已经演变到的宝石)