Never been to DZone Snippets before?

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 (See related posts)

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 on this post

darcy posts on Aug 01, 2007 at 17:47
Awesome! Thanks for that.

Two quick things I had to do:

1) add require 'logger' before the if statement
2) typo fix SDTOUT to STDOUT


You need to create an account or log in to post comments to this site.


Click here to browse all 4839 code snippets

Related Posts