From a2bf8e398807a45fba99a14f03b063a48a5192f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Dach?= Date: Mon, 25 Aug 2025 13:43:03 +0200 Subject: [PATCH] Fix copy-paste fail in log message --- osu.Game/Database/BackgroundDataStoreProcessor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Database/BackgroundDataStoreProcessor.cs b/osu.Game/Database/BackgroundDataStoreProcessor.cs index c0f2238219..f8d1b9ae51 100644 --- a/osu.Game/Database/BackgroundDataStoreProcessor.cs +++ b/osu.Game/Database/BackgroundDataStoreProcessor.cs @@ -727,7 +727,7 @@ namespace osu.Game.Database } catch (Exception e) { - Logger.Log(@$"Failed to update ranked/submitted dates for beatmap set {id}: {e}"); + Logger.Log(@$"Failed to update user tags for beatmap {id}: {e}"); ++failedCount; } }