Use info log level to inform about a deleted user and thus the verification is not needed anymore

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2018-06-22 14:11:25 +02:00
parent 1bedfce928
commit dc12f24f73
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ class VerifyUserData extends Job {
// we don't check a valid user -> give up
if ($user === null) {
$this->logger->error($argument['uid'] . ' doesn\'t exist, can\'t verify user data.');
$this->logger->info($argument['uid'] . ' doesn\'t exist, can\'t verify user data.');
return true;
}