diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-05-24 20:40:57 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-05-24 20:40:57 -0400 |
commit | 16ad205ded9b0defe939213b57948216f43f948f (patch) | |
tree | 324abd135a5b0ef18236de6d12394e3c52296cb9 /src/SMAPI/Program.cs | |
parent | a059da747a4ebf5cc4257b449a85031f7842c291 (diff) | |
download | SMAPI-16ad205ded9b0defe939213b57948216f43f948f.tar.gz SMAPI-16ad205ded9b0defe939213b57948216f43f948f.tar.bz2 SMAPI-16ad205ded9b0defe939213b57948216f43f948f.zip |
suppress more game debug output (#511)
Diffstat (limited to 'src/SMAPI/Program.cs')
-rw-r--r-- | src/SMAPI/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs index 2dcf67e4..f4768389 100644 --- a/src/SMAPI/Program.cs +++ b/src/SMAPI/Program.cs @@ -94,7 +94,7 @@ namespace StardewModdingAPI new Regex(@"^loadPreferences\(\); begin", RegexOptions.Compiled | RegexOptions.CultureInvariant), new Regex(@"^savePreferences\(\); async=", RegexOptions.Compiled | RegexOptions.CultureInvariant), new Regex(@"^Multiplayer auth success$", RegexOptions.Compiled | RegexOptions.CultureInvariant), - new Regex(@"^DebugOutput: added CLOUD", RegexOptions.Compiled | RegexOptions.CultureInvariant) + new Regex(@"^DebugOutput: (?:added CLOUD|dismount tile|Ping|playerPos)", RegexOptions.Compiled | RegexOptions.CultureInvariant) }; /// <summary>Encapsulates SMAPI's JSON file parsing.</summary> |