Merge pull request #9965 from nextcloud/bugfix/8402/do-not-log-if-user-was-deleted-already

Use info log level to inform about a deleted user and thus the verification is not needed anymore
This commit is contained in:
Morris Jobke 2018-06-22 14:48:40 +02:00 committed by GitHub
commit 144d1aa29d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}