When I do
Rails.logger.debug \"hello world\" from within my rake tasks I want it to log to standard out.
How do I set the rails logger to Logger.new(STDOUT) fro
I just did Rails.logger = Logger.new(STDOUT) and that also worked (rails3)
Rails.logger = Logger.new(STDOUT)