From 26f1ea1ceacf447d039904e8f744576c49f990a5 Mon Sep 17 00:00:00 2001 From: Juan Pablo Villafáñez Date: Mon, 26 Sep 2016 08:43:42 +0200 Subject: Change the minimum log level to fatal Downstreaming of https://github.com/owncloud/core/pull/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 3e0734965b0..b76cb4f8c28 100644 --- a/lib/private/Log.php +++ b/lib/private/Log.php @@ -233,7 +233,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']); -- cgit v1.2.3