resolve logging bug where cmdline args arent shown

This commit is contained in:
David Sparer
2017-02-03 09:32:43 -07:00
parent afec12822f
commit 530615f049

View File

@@ -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()