From 0ee1b440eef09737258add70989c1ce60bab9414 Mon Sep 17 00:00:00 2001 From: Jeffery Thompson Date: Fri, 16 Nov 2018 17:19:49 -0500 Subject: [PATCH] fix: exception in NetStandard if console message contained curly braces --- ICD.Common.Utils/IcdConsole.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICD.Common.Utils/IcdConsole.cs b/ICD.Common.Utils/IcdConsole.cs index d27d370..5ca1894 100644 --- a/ICD.Common.Utils/IcdConsole.cs +++ b/ICD.Common.Utils/IcdConsole.cs @@ -50,7 +50,7 @@ namespace ICD.Common.Utils Print(message); } #else - Print(message, args); + Print(message); #endif }