Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-08-06 22:07:15 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-08-06 22:07:15 +0300
commitdd5862e270fd06b3124ea1a6be7030a627b2e86a (patch)
tree6986d4b68f41a14bb6c3625fcb0642e4104c3abd /apps/federation
parentaa5956f1eb85bea1666ddb8462df5169b5e2f120 (diff)
A failing federation sync job is not an error
This is an INFO warning at best. Else it spams the logs continiously. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/federation')
-rw-r--r--apps/federation/lib/SyncJob.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/federation/lib/SyncJob.php b/apps/federation/lib/SyncJob.php
index 6eaaf13944d..9709f5ca29d 100644
--- a/apps/federation/lib/SyncJob.php
+++ b/apps/federation/lib/SyncJob.php
@@ -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',
]);
}