Report this

What is the reason for this report?

log file is showing no error message

Posted on August 4, 2019

hello, In my rails app i have cleaned up my production.log file. and now the log file is showing no error message. what should i do?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
0

Accepted Answer

Hello,

Do you by any chance have any logging related values set in config/environments/production.rb ?

If you haven’t made any changes, the default should be:

config.log_level = :info
RAILS_DEFAULT_LOGGER = Logger.new('log/production.log')

Make sure you haven’t used SyslogLogger as that will log to the OS syslog, not a separate Rails app log, and your application won’t find it. If your logging goes to syslog, the values would look like :

config.log_level = :info
RAILS_DEFAULT_LOGGER = SyslogLogger.new('example.com-production')

in my rails app, when i am trying to upload a photo, it is showing the following errors. Postfeaturedimage Failed to manipulate with MiniMagick, maybe it is not an image? Original Error: You must have ImageMagick or GraphicsMagick installed

should i add this question in a new question? thank you @Kdimitrov

@Kdimitrov thank you, it works. can i share another problem related to rails?

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.