summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/logging.txt10
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt
index 83283b709d..3a8b80a0a5 100644
--- a/docs/topics/logging.txt
+++ b/docs/topics/logging.txt
@@ -490,8 +490,14 @@ Messages to this logger have the following extra context:
.. versionadded:: 1.9
-Log messages related to the rendering of templates. Missing context variables
-are logged as ``DEBUG`` messages if :setting:`DEBUG` is `True`.
+Log messages related to the rendering of templates.
+
+* Missing context variables are logged as ``DEBUG`` messages.
+
+* Uncaught exceptions raised during the rendering of an
+ :ttag:`{% include %} <include>` are logged as ``WARNING`` messages when
+ debug mode is off (helpful since ``{% include %}`` silences the exception and
+ returns an empty string in that case).
.. _django-db-logger: