summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-07-07 01:53:55 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-07-07 01:53:55 -0400
commitda8a56a8553258c126967a6ada950f7dfcf393e2 (patch)
tree80ab26ac97785d5c6b40b956774f7cc8012143b4 /src
parentd928bf188e9ab171223bc07d7209d2887d954642 (diff)
downloadSMAPI-da8a56a8553258c126967a6ada950f7dfcf393e2.tar.gz
SMAPI-da8a56a8553258c126967a6ada950f7dfcf393e2.tar.bz2
SMAPI-da8a56a8553258c126967a6ada950f7dfcf393e2.zip
tweak text when mod crashes on entry, increase log level to error
Diffstat (limited to 'src')
-rw-r--r--src/StardewModdingAPI/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StardewModdingAPI/Program.cs b/src/StardewModdingAPI/Program.cs
index c7adcb94..4b50e4fb 100644
--- a/src/StardewModdingAPI/Program.cs
+++ b/src/StardewModdingAPI/Program.cs
@@ -786,7 +786,7 @@ namespace StardewModdingAPI
}
catch (Exception ex)
{
- this.Monitor.Log($"The {metadata.DisplayName} mod failed on entry initialisation. It will still be loaded, but may not function correctly.\n{ex.GetLogSummary()}", LogLevel.Warn);
+ this.Monitor.Log($"{metadata.DisplayName} failed on entry and might not work correctly. Technical details:\n{ex.GetLogSummary()}", LogLevel.Error);
}
}