summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-04-22 20:20:43 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-04-22 20:20:43 -0400
commitb2c4218e0dec8c62906ccf8a762f0bf84e14a74f (patch)
tree90e671b32fc23fd171fa62af3dafc7b7709940a1
parent5e7eaf9f75d72d8cbb338c35b43f2974440b3456 (diff)
downloadSMAPI-b2c4218e0dec8c62906ccf8a762f0bf84e14a74f.tar.gz
SMAPI-b2c4218e0dec8c62906ccf8a762f0bf84e14a74f.tar.bz2
SMAPI-b2c4218e0dec8c62906ccf8a762f0bf84e14a74f.zip
update console log suppress patterns for SDV 1.3 (#453)
-rw-r--r--src/SMAPI/Program.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs
index 8f91c32b..6133d010 100644
--- a/src/SMAPI/Program.cs
+++ b/src/SMAPI/Program.cs
@@ -90,7 +90,11 @@ namespace StardewModdingAPI
private readonly Regex[] SuppressConsolePatterns =
{
new Regex(@"^TextBox\.Selected is now '(?:True|False)'\.$", RegexOptions.Compiled | RegexOptions.CultureInvariant),
- new Regex(@"^(?:FRUIT )?TREE: IsClient:(?:True|False) randomOutput: \d+$", RegexOptions.Compiled | RegexOptions.CultureInvariant)
+ new Regex(@"^(?:FRUIT )?TREE: IsClient:(?:True|False) randomOutput: \d+$", RegexOptions.Compiled | RegexOptions.CultureInvariant),
+ 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)
};
/// <summary>Encapsulates SMAPI's JSON file parsing.</summary>