summaryrefslogtreecommitdiff
path: root/src/SMAPI/Program.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-07-31 19:29:01 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-07-31 19:29:01 -0400
commitb47068248af02a9815030cd7bd5f0bd1c49cc235 (patch)
treec48f6ddfc0d1d3fccc3297756a2841c2a5347727 /src/SMAPI/Program.cs
parent09990d95eba4143fddcbc855ca798298c4f85a70 (diff)
downloadSMAPI-b47068248af02a9815030cd7bd5f0bd1c49cc235.tar.gz
SMAPI-b47068248af02a9815030cd7bd5f0bd1c49cc235.tar.bz2
SMAPI-b47068248af02a9815030cd7bd5f0bd1c49cc235.zip
tweak 'share your log' message
Diffstat (limited to 'src/SMAPI/Program.cs')
-rw-r--r--src/SMAPI/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs
index 92e7ca17..6012b15a 100644
--- a/src/SMAPI/Program.cs
+++ b/src/SMAPI/Program.cs
@@ -274,7 +274,7 @@ namespace StardewModdingAPI
if (File.Exists(Constants.FatalCrashMarker))
{
this.Monitor.Log("The game crashed last time you played. That can be due to bugs in the game, but if it happens repeatedly you can ask for help here: http://community.playstarbound.com/threads/108375/.", LogLevel.Error);
- this.Monitor.Log($"If you ask for help, make sure to attach this file: {Constants.FatalCrashLog}", LogLevel.Error);
+ this.Monitor.Log("If you ask for help, make sure to share your SMAPI log: https://log.smapi.io.", LogLevel.Error);
this.Monitor.Log("Press any key to delete the crash data and continue playing.", LogLevel.Info);
Console.ReadKey();
File.Delete(Constants.FatalCrashLog);