From e1279fb8608dd87888d08bf210a82bb25b250f69 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Thu, 21 Jun 2018 13:11:35 -0400 Subject: [PATCH] fix: Don't write console to error out --- ICD.Common.Utils/IcdConsole.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ICD.Common.Utils/IcdConsole.cs b/ICD.Common.Utils/IcdConsole.cs index 8438c3b..a6c1a8c 100644 --- a/ICD.Common.Utils/IcdConsole.cs +++ b/ICD.Common.Utils/IcdConsole.cs @@ -1,4 +1,5 @@ using System; +using System.Diagnostics; using System.Linq; using ICD.Common.Properties; #if SIMPLSHARP @@ -74,7 +75,7 @@ namespace ICD.Common.Utils #else System.Console.ForegroundColor = color.ToForegroundConsoleColor(); System.Console.BackgroundColor = color.ToBackgroundConsoleColor(); - System.Console.Error.WriteLine(message); + System.Console.WriteLine(message); System.Console.ResetColor(); #endif } @@ -107,7 +108,7 @@ namespace ICD.Common.Utils #else System.Console.ForegroundColor = color.ToForegroundConsoleColor(); System.Console.BackgroundColor = color.ToBackgroundConsoleColor(); - System.Console.Error.Write(message); + System.Console.Write(message); System.Console.ResetColor(); #endif }