diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 76005f0..69892c7 100644
a
|
b
|
configuration method by default.
|
1191 | 1191 | If you set :setting:`LOGGING_CONFIG` to ``None``, the logging |
1192 | 1192 | configuration process will be skipped. |
1193 | 1193 | |
1194 | | .. _dictConfig: http://docs.python.org/library/logging.html#logging.dictConfig |
| 1194 | .. _dictConfig: http://docs.python.org/library/logging.config.html#configuration-dictionary-schema |
1195 | 1195 | |
1196 | 1196 | .. setting:: LOGIN_REDIRECT_URL |
1197 | 1197 | |
diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt
index 877024e..4a9d6ad 100644
a
|
b
|
Since the loading of settings is one of the first things that Django
|
225 | 225 | does, you can be certain that loggers are always ready for use in your |
226 | 226 | project code. |
227 | 227 | |
228 | | .. _dictConfig format: http://docs.python.org/library/logging.html#configuration-dictionary-schema |
| 228 | .. _dictConfig format: http://docs.python.org/library/logging.config.html#configuration-dictionary-schema |
229 | 229 | |
230 | 230 | .. _a third-party library: http://bitbucket.org/vinay.sajip/dictconfig |
231 | 231 | |