diff options
| author | Flavio Curella <flavio.curella@gmail.com> | 2015-11-06 10:19:41 -0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-01-11 07:35:17 -0500 |
| commit | 0bc5cd628042bf0a44df60a93085a4f991a84dfb (patch) | |
| tree | 076999e7afc4c14840a44eff6d92b0c0ba215d36 /docs/ref | |
| parent | 3792e291e6aee9cd43a48fac33f19a6ab24920d2 (diff) | |
Fixed #25684 -- Made runserver use logging for request/response output.
Thanks andreif for the contributing to the patch.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/django-admin.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 870f5dfc5c..ca21851fe5 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -827,6 +827,14 @@ with its own :ref:`runserver<staticfiles-runserver>` command. If :djadmin:`migrate` was not previously executed, the table that stores the history of migrations is created at first run of ``runserver``. +Logging of each request and response of the server is sent to the +:ref:`django-server-logger` logger. + +.. versionchanged:: 1.10 + + In older versions, log messages were written to ``sys.stderr`` instead of + being handled through Python logging. + .. django-admin-option:: --noreload Use the ``--noreload`` option to disable the use of the auto-reloader. This |
