mirror of
https://github.com/nextcloud/server.git
synced 2026-04-24 07:39:23 -04: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
f595d32c57
commit
6defeaa119
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