By sm ehsan
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!
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?
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.