Skip to content

Commit 9c3431d

Browse files
committed
Fix grammar per duduribeiro [ci skip]
1 parent 51af5a4 commit 9c3431d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/general/logging.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
# Logging
44

5-
If we are using ActiveModelSerializers on a Rails app by default the `Rails.logger` will be used.
5+
The default logger in a Rails application will be `Rails.logger`.
66

7-
On a non Rails enviroment by default the `ActiveSupport::TaggedLogging` will be
8-
used.
7+
When there is no `Rails.logger`, the default logger is an instance of
8+
`ActiveSupport::TaggedLogging` logging to STDOUT.
99

10-
You may customize the logger we by in an initializer, for example:
10+
You may customize the logger in an initializer, for example:
1111

1212
```ruby
1313
ActiveModelSerializers.logger = Logger.new(STDOUT)

0 commit comments

Comments
 (0)