From a22ab5038aaf90a182f99f45c1cddc234b794388 Mon Sep 17 00:00:00 2001 From: chr Date: Wed, 7 Apr 2021 23:48:56 -0700 Subject: [PATCH] logging for media create error --- app/controllers/api/v2/media_controller.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/controllers/api/v2/media_controller.rb b/app/controllers/api/v2/media_controller.rb index 0c1baf01d..37628ffd5 100644 --- a/app/controllers/api/v2/media_controller.rb +++ b/app/controllers/api/v2/media_controller.rb @@ -6,7 +6,9 @@ class Api::V2::MediaController < Api::V1::MediaController render json: @media_attachment, serializer: REST::MediaAttachmentSerializer, status: 202 rescue Paperclip::Errors::NotIdentifiedByImageMagickError render json: file_type_error, status: 422 - rescue Paperclip::Error + rescue Paperclip::Error => e + Rails.logger.error "Ran into media create error (#{e.message})" + e.backtrace.each{ |line| Rails.logger.error line } render json: processing_error, status: 500 end end