From 176993b130bf5d576636ee0bc13624c10e673824 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Sun, 1 Oct 2017 14:59:28 -0400 Subject: [PATCH] Tidying --- ICD.Common.Utils/IcdConsole.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ICD.Common.Utils/IcdConsole.cs b/ICD.Common.Utils/IcdConsole.cs index 7525b80..bcbf993 100644 --- a/ICD.Common.Utils/IcdConsole.cs +++ b/ICD.Common.Utils/IcdConsole.cs @@ -45,10 +45,10 @@ namespace ICD.Common.Utils } catch (NotSupportedException) { - CrestronConsole.Print(message); + Print(message); } #else - Console.Write(message, args); + Print(message, args); #endif }