From fd6c7c73cc4fb192df98cb21fb42f47a5c40a379 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 22 Apr 2018 21:17:16 -0400 Subject: change 'Console.Out' logger to 'game' for clarity Although any mod can write to the console directly, this is rare enough that using 'game' as the logger name is less confusing. --- src/SMAPI/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs index 6133d010..3c6b1cf6 100644 --- a/src/SMAPI/Program.cs +++ b/src/SMAPI/Program.cs @@ -362,7 +362,7 @@ namespace StardewModdingAPI // redirect direct console output { - Monitor monitor = this.GetSecondaryMonitor("Console.Out"); + Monitor monitor = this.GetSecondaryMonitor("game"); if (monitor.WriteToConsole) this.ConsoleManager.OnMessageIntercepted += message => this.HandleConsoleMessage(monitor, message); } -- cgit