diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt
index aa2afba..1e036e0 100644
|
a
|
b
|
handlers, filters and formatters that you want in your logging setup,
|
| 218 | 218 | and the log levels and other properties that you want those components |
| 219 | 219 | to have. |
| 220 | 220 | |
| 221 | | Logging is configured immediately after settings have been loaded. |
| | 221 | .. _manually: https://docs.djangoproject.com/en/dev/topics/settings/#django.conf.settings.configure |
| | 222 | |
| | 223 | Logging is configured as soon as settings have been loaded |
| | 224 | (either `manually`_ or when at least one setting is accessed). |
| 222 | 225 | Since the loading of settings is one of the first things that Django |
| 223 | 226 | does, you can be certain that loggers are always ready for use in your |
| 224 | 227 | project code. |