aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorप्रथमेश Sonpatki <csonpatki@gmail.com>2016-02-26 15:36:49 +0530
committerप्रथमेश Sonpatki <csonpatki@gmail.com>2016-02-26 15:36:49 +0530
commit56ca2061df83a307943a0ffdfe6f5f4ed5846cf7 (patch)
treecb942fd9caed096f02c080acd4ea0b3080c16de5
parent6fe37ee63280a1a90a63541148d3ab839fb052b6 (diff)
parent2dc3e81aea8dbca772f320f84e26ba309016dc23 (diff)
downloadrails-56ca2061df83a307943a0ffdfe6f5f4ed5846cf7.tar.gz
rails-56ca2061df83a307943a0ffdfe6f5f4ed5846cf7.tar.bz2
rails-56ca2061df83a307943a0ffdfe6f5f4ed5846cf7.zip
Merge pull request #23902 from prajakta-tambe/update-debuggings-rails-app-doc
Changed debugging rails app doc.
-rw-r--r--guides/source/debugging_rails_applications.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md
index 35ad6eb705..713d95a3c1 100644
--- a/guides/source/debugging_rails_applications.md
+++ b/guides/source/debugging_rails_applications.md
@@ -109,18 +109,18 @@ It can also be useful to save information to log files at runtime. Rails maintai
Rails makes use of the `ActiveSupport::Logger` class to write log information. Other loggers, such as `Log4r`, may also be substituted.
-You can specify an alternative logger in `environment.rb` or any other environment file, for example:
+You can specify an alternative logger in `config/application.rb`, for example:
```ruby
-Rails.logger = Logger.new(STDOUT)
-Rails.logger = Log4r::Logger.new("Application Log")
+config.logger = Logger.new(STDOUT)
+config.logger = Log4r::Logger.new("Application Log")
```
Or in the `Initializer` section, add _any_ of the following
```ruby
-config.logger = Logger.new(STDOUT)
-config.logger = Log4r::Logger.new("Application Log")
+Rails.logger = Logger.new(STDOUT)
+Rails.logger = Log4r::Logger.new("Application Log")
```
TIP: By default, each log is created under `Rails.root/log/` and the log file is named after the environment in which the application is running.