diff options
author | Chris Adams <wave@chrisadams.me.uk> | 2012-06-29 00:08:43 +0100 |
---|---|---|
committer | Chris Adams <wave@chrisadams.me.uk> | 2012-06-29 00:10:57 +0100 |
commit | a9bb1364b599a6f5196dd0132dfe5a941a7649e1 (patch) | |
tree | 910842dadc889214aa34b0efd16440c184f0856f /guides/source | |
parent | debb3a178f9863d542feed037915c08dd6978089 (diff) | |
download | rails-a9bb1364b599a6f5196dd0132dfe5a941a7649e1.tar.gz rails-a9bb1364b599a6f5196dd0132dfe5a941a7649e1.tar.bz2 rails-a9bb1364b599a6f5196dd0132dfe5a941a7649e1.zip |
Rails now uses the ActiveSupport BufferedLogger class
Instead of the standard Ruby logger
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/debugging_rails_applications.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/debugging_rails_applications.textile b/guides/source/debugging_rails_applications.textile index 0802a2db26..cc172042e9 100644 --- a/guides/source/debugging_rails_applications.textile +++ b/guides/source/debugging_rails_applications.textile @@ -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: |