From 6fd3974c8bbc9e628bc8ab42dab7628fc3209979 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Juan=20Pablo=20Villafa=C3=B1ez?= Date: Mon, 26 Sep 2016 10:34:10 +0200 Subject: [PATCH] [stable9.1] Change the minimum log level to fatal (#26213) Signed-off-by: Lukas Reschke --- lib/private/Log.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Log.php b/lib/private/Log.php index 018461e23b6..6268de2bd57 100644 --- a/lib/private/Log.php +++ b/lib/private/Log.php @@ -228,7 +228,7 @@ class Log implements ILogger { * @return void */ public function log($level, $message, array $context = array()) { - $minLevel = min($this->config->getValue('loglevel', Util::WARN), Util::ERROR); + $minLevel = min($this->config->getValue('loglevel', Util::WARN), Util::FATAL); $logCondition = $this->config->getValue('log.condition', []); array_walk($context, [$this->normalizer, 'format']); -- 2.39.5