From 530615f0499c0fca220380ef45c7ab2fb164a3af Mon Sep 17 00:00:00 2001 From: David Sparer Date: Fri, 3 Feb 2017 09:32:43 -0700 Subject: [PATCH] resolve logging bug where cmdline args arent shown --- mRemoteV1/App/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mRemoteV1/App/Startup.cs b/mRemoteV1/App/Startup.cs index e78376c9e..009b4c17b 100644 --- a/mRemoteV1/App/Startup.cs +++ b/mRemoteV1/App/Startup.cs @@ -142,7 +142,7 @@ namespace mRemoteNG.App private static void LogCmdLineArgs() { - Logger.Instance.InfoFormat($"Command Line: {Environment.GetCommandLineArgs()}"); + Logger.Instance.InfoFormat($"Command Line: {string.Join(" ", Environment.GetCommandLineArgs())}"); } private static void LogCLRData()