mirror of
https://github.com/django/django.git
synced 2025-07-24 13:44:32 +00:00
Fixed #25318 -- Made SILENCED_SYSTEM_CHECKS suppress all messages.
Previously, messages of ERROR level or higher were printed to the console.
This commit is contained in:
parent
2bb1027d6b
commit
01b2b0b654
4 changed files with 14 additions and 12 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue