From 6defeaa11938342d41d4f3851ff0aebdf71d464a Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Tue, 16 Sep 2025 14:49:54 +0200 Subject: [PATCH] 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 --- lib/private/Files/Cache/Updater.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Files/Cache/Updater.php b/lib/private/Files/Cache/Updater.php index 03681036aa2..1c1fc8b9926 100644 --- a/lib/private/Files/Cache/Updater.php +++ b/lib/private/Files/Cache/Updater.php @@ -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]); } } }