Skip to content

Instantly share code, notes, and snippets.

@jhjguxin
Created September 19, 2014 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhjguxin/e1186903b514c66a55b8 to your computer and use it in GitHub Desktop.
Save jhjguxin/e1186903b514c66a55b8 to your computer and use it in GitHub Desktop.
how to config log level within production env rails + unicorn
# Set to :debug to see everything in the log.
config.log_level = ENV["LOG_LEVEL"].present? ? ENV["LOG_LEVEL"] : :info
before_fork do |server, worker|
ENV["LOG_LEVEL"] = "debug"
old_pid = "#{app_path}/tmp/pids/unicorn.pid.oldbin"
if File.exists?(old_pid) && server.pid != old_pid
begin
Process.kill("QUIT", File.read(old_pid).to_i)
rescue Errno::ENOENT, Errno::ESRCH
puts "Send 'QUIT' signal to unicorn error!"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment