We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7ef0a21 + 997663a commit 0700d4aCopy full SHA for 0700d4a
QModManager/Utility/Dialog.cs
@@ -25,7 +25,11 @@ internal class Button
25
internal static readonly Button Disabled = new Button();
26
internal static readonly Button SeeLog = new Button("See Log", () =>
27
{
28
- string logPath = Application.consoleLogPath;
+ string gameSuffix = "Subnautica";
29
+ if (Patcher.CurrentlyRunningGame == QModGame.BelowZero)
30
+ gameSuffix += "Zero";
31
+
32
+ string logPath = Path.Combine(Environment.CurrentDirectory, $"qmodmanager_log-{gameSuffix}.txt");
33
34
Logger.Debug($"Opening log file located in: \"{logPath}\"");
35
0 commit comments