summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorAlex Legler <a3li@gentoo.org>2011-10-16 17:48:02 +0200
committerAlex Legler <a3li@gentoo.org>2011-10-16 17:48:02 +0200
commitc5eae8090309cf3a14d38597d97cd58510c8f7f0 (patch)
tree29197257010d012cf16fc9f79df0731fc6e0f0a9 /app
parentRemove exception notification tool again for debugging (diff)
downloadglsamaker-c5eae8090309cf3a14d38597d97cd58510c8f7f0.tar.gz
glsamaker-c5eae8090309cf3a14d38597d97cd58510c8f7f0.tar.bz2
glsamaker-c5eae8090309cf3a14d38597d97cd58510c8f7f0.zip
Remove exception notification tool again for debugging
Diffstat (limited to 'app')
-rw-r--r--app/controllers/application_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index defeab3..ebb0570 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -27,6 +27,6 @@ class ApplicationController < ActionController::Base
caller[0] =~ /`([^']*)'/ and where = $1
logger.error "[#{where}] #{error.class}: #{error.to_s}"
logger.info error.backtrace.join("\n")
- ExceptionNotifier::Notifier.exception_notification(request.env, error).deliver
+ #ExceptionNotifier::Notifier.exception_notification(request.env, error).deliver
end
end