aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2016-04-12 13:43:21 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2016-04-12 13:44:07 +0530
commit6ab0637da83429187b7191fac87cdce327e656cb (patch)
treee0abd083896a7798cbed1b1f40be1090ee3b3fd8 /guides/source/configuring.md
parent72360dd11ac5f59973b8255ba459fb5ad111e1af (diff)
downloadrails-6ab0637da83429187b7191fac87cdce327e656cb.tar.gz
rails-6ab0637da83429187b7191fac87cdce327e656cb.tar.bz2
rails-6ab0637da83429187b7191fac87cdce327e656cb.zip
[ci skip] Typo fix. `loggs` -> `logs`
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 549ec70603..0838e2d74e 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -118,7 +118,7 @@ defaults to `:debug` for all environments. The available log levels are: `:debug
* `config.logger` is the logger that will be used for `Rails.logger` and any related Rails logging such as `ActiveRecord::Base.logger`. It defaults to an instance of `ActiveSupport::TaggedLogging` that wraps an instance of `ActiveSupport::Logger` which outputs a log to the `log/` directory. You can supply a custom logger, to get full compatibility you must follow these guidelines:
* To support a formatter you must manually assign a formatter from the `config.log_formatter` value to the logger.
- * To support tagged loggs the log instance must be wrapped with `ActiveSupport::TaggedLogging`.
+ * To support tagged logs, the log instance must be wrapped with `ActiveSupport::TaggedLogging`.
* To support silencing the logger must include `LoggerSilence` and `ActiveSupport::LoggerThreadSafeLevel` modules. The `ActiveSupport::Logger` class already includes these modules.
```ruby