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?
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.
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?