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']);