From fed6805c823484f1f728248c4c98de9f4d271adb 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 561600d9b7ba1..35098c5b796f1 100644 --- a/lib/private/Files/Cache/Updater.php +++ b/lib/private/Files/Cache/Updater.php @@ -284,7 +284,7 @@ private function correctParentStorageMtime($internalPath) { // 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]); } } }