The default for production.rb is:
config.log_level = :info
However, I really like to see the SQL queries and extra logging in my production environment.
Changing the log level to:
config.log_level = :debug
Is this a terribly bad practice? How much overhead does this add to my application to have Rails do this extra logging?