summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-01-13 19:02:39 -0500
committerTim Graham <timograham@gmail.com>2016-01-14 09:05:43 -0500
commit5b94b17feff15a9f0345f92fc0568bfe7038e3a3 (patch)
treec1dba0a0e0a3eba2ed687e04187dc4b70cae10a6 /docs
parent28acc0d6df844ccfc8de6f4e7d5883eb4841e946 (diff)
Fixed #25999 -- Removed promotion of RemovedInNextVersionWarning to loud by default.
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/release-process.txt10
-rw-r--r--docs/topics/logging.txt3
2 files changed, 5 insertions, 8 deletions
diff --git a/docs/internals/release-process.txt b/docs/internals/release-process.txt
index 7ca2e452a5..2c05f909d9 100644
--- a/docs/internals/release-process.txt
+++ b/docs/internals/release-process.txt
@@ -92,16 +92,16 @@ So, for example, if we decided to start the deprecation of a function in
Django 4.2:
* Django 4.2 will contain a backwards-compatible replica of the function which
- will raise a ``RemovedInDjango51Warning``. This warning is silent by
- default; you can turn on display of these warnings with the ``-Wd`` option
- of Python.
+ will raise a ``RemovedInDjango51Warning``.
* Django 5.0 (the version that follows 4.2) will still contain the
- backwards-compatible replica. This warning becomes *loud* by default and
- will likely be quite annoying.
+ backwards-compatible replica.
* Django 5.1 will remove the feature outright.
+The warnings are silent by default. You can turn on display of these warnings
+with the ``python -Wd`` option.
+
A more generic example:
* X.0
diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt
index 407f12aaef..9cb1da45b4 100644
--- a/docs/topics/logging.txt
+++ b/docs/topics/logging.txt
@@ -739,9 +739,6 @@ When :setting:`DEBUG` is ``True``:
* The ``django`` catch-all logger sends all messages at the ``INFO`` level or
higher to the console.
-* The ``py.warnings`` logger, which handles messages from ``warnings.warn()``,
- sends messages to the console.
-
When :setting:`DEBUG` is ``False``:
* The ``django`` logger send messages with ``ERROR`` or ``CRITICAL`` level to