Change the minimum log level to fatal
Downstreaming of https://github.com/owncloud/core/pull/26213 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
parent
244de6451b
commit
26f1ea1cea
1 changed files with 1 additions and 1 deletions
|
@ -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']);
|
||||
|
|
Loading…
Reference in a new issue