mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:07:52 +08:00
Merge pull request #25871 from Susko3/fix-logfile-notification
Fix opening log files from notification not presenting the correct file
This commit is contained in:
commit
b6ed792a41
@ -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;
|
||||
}
|
||||
}));
|
||||
|
Loading…
Reference in New Issue
Block a user