diff options
| author | Tim Graham <timograham@gmail.com> | 2015-08-26 15:47:41 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-08-28 13:34:56 -0400 |
| commit | 01b2b0b6543afdaf30623b7a779b7fe4514a9c7b (patch) | |
| tree | 18c8a6d5612bce107621c882beb6c8b51cd3b014 /docs/ref | |
| parent | 2bb1027d6bcdad59624a9d08701e0d2e4a9c0ba7 (diff) | |
Fixed #25318 -- Made SILENCED_SYSTEM_CHECKS suppress all messages.
Previously, messages of ERROR level or higher were printed to
the console.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/settings.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index 331e117060..217f54281d 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -2195,8 +2195,12 @@ Default: ``[]`` (Empty list) A list of identifiers of messages generated by the system check framework (i.e. ``["models.W001"]``) that you wish to permanently acknowledge and ignore. -Silenced warnings will no longer be output to the console; silenced errors -will still be printed, but will not prevent management commands from running. +Silenced checks will not be output to the console. + +.. versionchanged:: 1.9 + + In older versions, silenced messages of ``ERROR`` level or higher were + printed to the console. See also the :doc:`/ref/checks` documentation. |
