Skip to content

Commit 2a0c19c

Browse files
authored
changed loglvl from "error" to "debug" (#243)
It is not an error, but just usual situation. Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
1 parent d140563 commit 2a0c19c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Service/DaemonConfigService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function getDaemonConfigByName(string $name): ?DaemonConfig {
7676
try {
7777
return $this->mapper->findByName($name);
7878
} catch (DoesNotExistException|MultipleObjectsReturnedException|Exception $e) {
79-
$this->logger->error('Failed to get daemon config by name. Error: ' . $e->getMessage(), ['exception' => $e]);
79+
$this->logger->debug('Failed to get daemon config by name. Error: ' . $e->getMessage(), ['exception' => $e]);
8080
return null;
8181
}
8282
}

0 commit comments

Comments
 (0)