Rails now uses the ActiveSupport BufferedLogger class

Instead of the standard Ruby logger
This commit is contained in:
Chris Adams 2012-06-29 00:08:43 +01:00
parent debb3a178f
commit a9bb1364b5
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ It can also be useful to save information to log files at runtime. Rails maintai
h4. What is the Logger?
Rails makes use of Ruby's standard +logger+ to write log information. You can also substitute another logger such as +Log4r+ if you wish.
Rails makes use of the +ActiveSupport::BufferedLogger+ class to write log information. You can also substitute another logger such as +Log4r+ if you wish.
You can specify an alternative logger in your +environment.rb+ or any environment file: