mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 10:22:54 +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)
|
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
|
Schedule(() => Notifications.Post(new SimpleNotification
|
||||||
{
|
{
|
||||||
@ -1198,7 +1198,7 @@ namespace osu.Game
|
|||||||
Text = NotificationsStrings.SubsequentMessagesLogged,
|
Text = NotificationsStrings.SubsequentMessagesLogged,
|
||||||
Activated = () =>
|
Activated = () =>
|
||||||
{
|
{
|
||||||
Storage.GetStorageForDirectory(@"logs").PresentFileExternally(logFile);
|
Logger.Storage.PresentFileExternally(logFile);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
Loading…
Reference in New Issue
Block a user