Skip to content
Snippets Groups Projects
Unverified Commit 26f1ea1c authored by Juan Pablo Villafáñez's avatar Juan Pablo Villafáñez Committed by Lukas Reschke
Browse files

Change the minimum log level to fatal

parent 244de645
No related branches found
No related tags found
No related merge requests found
...@@ -233,7 +233,7 @@ class Log implements ILogger { ...@@ -233,7 +233,7 @@ class Log implements ILogger {
* @return void * @return void
*/ */
public function log($level, $message, array $context = array()) { 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', []); $logCondition = $this->config->getValue('log.condition', []);
array_walk($context, [$this->normalizer, 'format']); array_walk($context, [$this->normalizer, 'format']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment