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>
pull/55150/head
Louis Chemineau 2025-09-16 14:49:54 +07:00 committed by backportbot[bot]
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]);
}
}
}