DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Add Rails Log To Console
In order to show rails log in console, add theses lines to your .irbrc
if ENV.include?('RAILS_ENV')&& !Object.const_defined?('RAILS_DEFAULT_LOGGER')
Object.const_set('RAILS_DEFAULT_LOGGER', Logger.new(SDTOUT))
end






Comments
Snippets Manager replied on Sun, 2007/02/18 - 4:27pm