Merge pull request #10558 from nextcloud/fix/noid/failing_sync_job_is_no_error

A failing federation sync job is not an error
This commit is contained in:
Björn Schießle 2018-08-07 10:09:24 +02:00 committed by GitHub
commit f8de12c014
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class SyncJob extends TimedJob {
if ($ex instanceof \Exception) {
$this->logger->logException($ex, [
'message' => "Error while syncing $url.",
'level' => ILogger::ERROR,
'level' => ILogger::INFO,
'app' => 'fed-sync',
]);
}