diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt
index 15c1aa9..2bc1be9 100644
a
|
b
|
Messages to this logger have the following extra context:
|
414 | 414 | ``django.db.backends`` |
415 | 415 | ~~~~~~~~~~~~~~~~~~~~~~ |
416 | 416 | |
417 | | Messages relating to the interaction of code with the database. |
418 | | For example, every SQL statement executed by a request is logged |
419 | | at the ``DEBUG`` level to this logger. |
| 417 | Messages relating to the interaction of code with the database. For example, |
| 418 | every application-level SQL statement executed by a request is logged at the |
| 419 | ``DEBUG`` level to this logger. |
420 | 420 | |
421 | 421 | Messages to this logger have the following extra context: |
422 | 422 | |
… |
… |
For performance reasons, SQL logging is only enabled when
|
428 | 428 | ``settings.DEBUG`` is set to ``True``, regardless of the logging |
429 | 429 | level or handlers that are installed. |
430 | 430 | |
| 431 | This logging does not include framework-level initialization (e.g. |
| 432 | ``SET TIMEZONE``) or transaction management queries (e.g. ``BEGIN``, |
| 433 | ``COMMIT``, and ``ROLLBACK``). Turn on query logging in your database if you |
| 434 | wish the view all database queries. |
| 435 | |
431 | 436 | ``django.security.*`` |
432 | 437 | ~~~~~~~~~~~~~~~~~~~~~~ |
433 | 438 | |