I have to change my rail application\'s default log path because of my company\'s internal software deployment process: basically my rails app ends up on a read-only location, a
The config.log_path setting has been deprecated - the recommended solution is now:
config.log_path
config.paths.log = "/some/path/#{Rails.env}.log"