diff options
author | Stan Hu <stanhu@gmail.com> | 2016-08-18 17:06:33 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2016-08-24 12:09:51 -0700 |
commit | 170885edd6f3ea52792511586778e0dce8021cf7 (patch) | |
tree | 4e7b04f41722dd4b369ecc7ed55285845e1e536f /lib/api/api.rb | |
parent | 7b0b2417491e28e5536688e0fca96829a4cb7900 (diff) | |
download | gitlab-ce-170885edd6f3ea52792511586778e0dce8021cf7.tar.gz |
Add Sentry logging to API callsadd-sentry-logging-to-api
Closes #21043
Diffstat (limited to 'lib/api/api.rb')
-rw-r--r-- | lib/api/api.rb | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/api/api.rb b/lib/api/api.rb index 6b8bfbbdae6..ecbd5a6e2fa 100644 --- a/lib/api/api.rb +++ b/lib/api/api.rb @@ -18,22 +18,14 @@ module API end rescue_from :all do |exception| - # lifted from https://github.com/rails/rails/blob/master/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb#L60 - # why is this not wrapped in something reusable? - trace = exception.backtrace - - message = "\n#{exception.class} (#{exception.message}):\n" - message << exception.annoted_source_code.to_s if exception.respond_to?(:annoted_source_code) - message << " " << trace.join("\n ") - - API.logger.add Logger::FATAL, message - rack_response({ 'message' => '500 Internal Server Error' }.to_json, 500) + handle_api_exception(exception) end format :json content_type :txt, "text/plain" # Ensure the namespace is right, otherwise we might load Grape::API::Helpers + helpers ::SentryHelper helpers ::API::Helpers mount ::API::AccessRequests |