ENV
我的配置文件和rake任务文件
#lib/tasks/raise.rake
namespace :raise do
desc "raise sth"
task :sth => :environment do
num = 1 / 0 # should raise error
end
end
end
# config/initializers/airbrake.rb
Airbrake.configure do |config|
config.rescue_rake_exceptions = true
config.api_key = Setting.airbrake_api
end
我希望运行RAILS_ENV=production rake raise:sth
向我的airbrake发送消息,但没有任何反应,只输出divided by 0
,而不是任何调用堆栈信息。
请帮帮我,谢谢〜