我在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不会采用这些设置。它仍然使用默认值。
非常感谢任何帮助!
答案 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
这是更新宝石的名称(已经演变到的宝石)