You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem/Scenario:
I have a development environment on my local machine. Everything works fine.
I deploy the application to other machine in production mode. Resizing image does not work and I don't have a clue why. I have no imagemagick installed but since I am in production mode I will not see this error.
Solution? This code:
# Log the failure to load the image.
logger.debug("Exception working with image: #{$!}")
Should be changed to WARN:
# Log the failure to load the image.
logger.warn("Exception working with image: #{$!}")
The text was updated successfully, but these errors were encountered:
Problem/Scenario:
I have a development environment on my local machine. Everything works fine.
I deploy the application to other machine in production mode. Resizing image does not work and I don't have a clue why. I have no imagemagick installed but since I am in production mode I will not see this error.
Solution? This code:
# Log the failure to load the image.
logger.debug("Exception working with image: #{$!}")
Should be changed to WARN:
# Log the failure to load the image.
logger.warn("Exception working with image: #{$!}")
The text was updated successfully, but these errors were encountered: