summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2018-12-14 00:23:48 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2018-12-14 00:23:48 -0500
commit8eee91c67db0f09e9c604c7b4a2809e5bc937258 (patch)
treeb268ca048033f2ea3eb670773b6cf43e343d3760 /src/SMAPI/Framework
parent95b1dedb667d1fe2fd9ee89ece342bacbdd3be48 (diff)
downloadSMAPI-8eee91c67db0f09e9c604c7b4a2809e5bc937258.tar.gz
SMAPI-8eee91c67db0f09e9c604c7b4a2809e5bc937258.tar.bz2
SMAPI-8eee91c67db0f09e9c604c7b4a2809e5bc937258.zip
fix game launch error logged as 'SMAPI'
Diffstat (limited to 'src/SMAPI/Framework')
-rw-r--r--src/SMAPI/Framework/SCore.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs
index 3749bab4..e43d3f8b 100644
--- a/src/SMAPI/Framework/SCore.cs
+++ b/src/SMAPI/Framework/SCore.cs
@@ -315,7 +315,7 @@ namespace StardewModdingAPI.Framework
}
catch (Exception ex)
{
- this.Monitor.Log($"The game failed unexpectedly: {ex.GetLogSummary()}", LogLevel.Error);
+ this.MonitorForGame.Log($"The game failed to launch: {ex.GetLogSummary()}", LogLevel.Error);
this.PressAnyKeyToExit();
}
finally