mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 14:31:03 -05:00
fix(Updater): Lower deadlock log level from warning to info
If this is safe to ignore, then it does not make sense to keep warning the admins. Signed-off-by: Louis Chemineau <louis@chmn.me>
This commit is contained in:
parent
ada7e9f192
commit
ffe4696192
1 changed files with 1 additions and 1 deletions
|
|
@ -284,7 +284,7 @@ class Updater implements IUpdater {
|
|||
// ignore the failure.
|
||||
// with failures concurrent updates, someone else would have already done it.
|
||||
// in the worst case the `storage_mtime` isn't updated, which should at most only trigger an extra rescan
|
||||
$this->logger->warning('Error while updating parent storage_mtime, should be safe to ignore', ['exception' => $e]);
|
||||
$this->logger->info('Error while updating parent storage_mtime, should be safe to ignore', ['exception' => $e]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue