1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 14:03:12 +08:00

Fix opening log files from notification not presenting the correct file

This commit is contained in:
Susko3
2023-12-18 21:11:00 +01:00
Unverified
parent 8e8d9b2cd9
commit cc800a18b2
+2 -2
View File
@@ -1190,7 +1190,7 @@ namespace osu.Game
}
else if (recentLogCount == short_term_display_limit)
{
string logFile = $@"{entry.Target.Value.ToString().ToLowerInvariant()}.log";
string logFile = Logger.GetLogger(entry.Target.Value).Filename;
Schedule(() => Notifications.Post(new SimpleNotification
{
@@ -1198,7 +1198,7 @@ namespace osu.Game
Text = NotificationsStrings.SubsequentMessagesLogged,
Activated = () =>
{
Storage.GetStorageForDirectory(@"logs").PresentFileExternally(logFile);
Logger.Storage.PresentFileExternally(logFile);
return true;
}
}));