Only log events when enabled in debug mode

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2022-03-11 12:26:07 +01:00
parent cec00df21c
commit 27f3aa5890
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF

View File

@ -60,12 +60,13 @@ class EventLogger implements IEventLogger {
} }
public function isLoggingActivated(): bool { public function isLoggingActivated(): bool {
if ($this->config->getValue('debug', false)) { $systemValue = (bool)$this->config->getValue('diagnostics.logging', false);
if ($systemValue && $this->config->getValue('debug', false)) {
return true; return true;
} }
$isDebugLevel = $this->internalLogger->getLogLevel([]) === Log::DEBUG; $isDebugLevel = $this->internalLogger->getLogLevel([]) === Log::DEBUG;
$systemValue = (bool)$this->config->getValue('diagnostics.logging', false);
return $systemValue && $isDebugLevel; return $systemValue && $isDebugLevel;
} }