Ticket #15801: fix-15801.patch

File fix-15801.patch, 1.1 KB (added by Jonas H., 13 years ago)
  • docs/ref/settings.txt

    diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
    index 76005f0..69892c7 100644
    a b configuration method by default.  
    11911191If you set :setting:`LOGGING_CONFIG` to ``None``, the logging
    11921192configuration process will be skipped.
    11931193
    1194 .. _dictConfig: http://docs.python.org/library/logging.html#logging.dictConfig
     1194.. _dictConfig: http://docs.python.org/library/logging.config.html#configuration-dictionary-schema
    11951195
    11961196.. setting:: LOGIN_REDIRECT_URL
    11971197
  • docs/topics/logging.txt

    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  
    225225does, you can be certain that loggers are always ready for use in your
    226226project code.
    227227
    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
    229229
    230230.. _a third-party library: http://bitbucket.org/vinay.sajip/dictconfig
    231231
Back to Top