2

我的development.rb, staging.rb, 和production.rb

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

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

任何帮助将不胜感激!

4

1 回答 1

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这是较新的 gem 的名称(已经演变成的那个)

于 2013-05-01T15:07:50.277 回答