Skip to content

Commit

Permalink
Merge pull request #84 from gabceb/master
Browse files Browse the repository at this point in the history
Added logger for development env
  • Loading branch information
fusion94 committed Feb 14, 2013
2 parents 08cdef3 + bf0f81d commit 026807e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config/environments/development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,10 @@

# Expands the lines which load the assets
config.assets.debug = true

config.logger = Logger.new(STDOUT)
config.logger.level = Logger.const_get(
ENV['LOG_LEVEL'] ? ENV['LOG_LEVEL'].upcase : 'DEBUG'
)

end

0 comments on commit 026807e

Please sign in to comment.