From 01b2b0b6543afdaf30623b7a779b7fe4514a9c7b Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 26 Aug 2015 15:47:41 -0400 Subject: Fixed #25318 -- Made SILENCED_SYSTEM_CHECKS suppress all messages. Previously, messages of ERROR level or higher were printed to the console. --- docs/ref/settings.txt | 8 ++++++-- docs/releases/1.9.txt | 4 ++++ 2 files changed, 10 insertions(+), 2 deletions(-) (limited to 'docs') 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. diff --git a/docs/releases/1.9.txt b/docs/releases/1.9.txt index d9bee08ce3..2eace132e7 100644 --- a/docs/releases/1.9.txt +++ b/docs/releases/1.9.txt @@ -989,6 +989,10 @@ Miscellaneous Set ``request.current_app`` to ``None`` if you don't want to use a namespace hint. +* The :setting:`SILENCED_SYSTEM_CHECKS` setting now silences messages of all + levels. Previously, messages of ``ERROR`` level or higher were printed to the + console. + .. _deprecated-features-1.9: Features deprecated in 1.9 -- cgit v1.3