From c72bd2a10761cae40db679553ee9d4238bdad830 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 18 Oct 2025 21:29:29 +0000 Subject: [PATCH] Consolidate debug log messages to single line Co-authored-by: Kvarkas <3611964+Kvarkas@users.noreply.github.com> --- mRemoteNG/UI/Window/ConnectionWindow.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mRemoteNG/UI/Window/ConnectionWindow.cs b/mRemoteNG/UI/Window/ConnectionWindow.cs index 53836feeb..df0335e72 100644 --- a/mRemoteNG/UI/Window/ConnectionWindow.cs +++ b/mRemoteNG/UI/Window/ConnectionWindow.cs @@ -368,8 +368,7 @@ namespace mRemoteNG.UI.Window var currentIndex = Array.IndexOf(documents, connDock.ActiveContent); if (currentIndex == -1) { - Runtime.MessageCollector.AddMessage(MessageClass.DebugMsg, - "NavigateToNextTab: ActiveContent not found in documents array"); + Runtime.MessageCollector.AddMessage(MessageClass.DebugMsg, "NavigateToNextTab: ActiveContent not found in documents array"); return; } @@ -392,8 +391,7 @@ namespace mRemoteNG.UI.Window var currentIndex = Array.IndexOf(documents, connDock.ActiveContent); if (currentIndex == -1) { - Runtime.MessageCollector.AddMessage(MessageClass.DebugMsg, - "NavigateToPreviousTab: ActiveContent not found in documents array"); + Runtime.MessageCollector.AddMessage(MessageClass.DebugMsg, "NavigateToPreviousTab: ActiveContent not found in documents array"); return; }