From f25a3d600e2b83051bdc4ee5e666fc6040265a35 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Wed, 8 Oct 2025 22:58:42 +1000 Subject: [PATCH] Remove unnecessary logging --- src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit.cs b/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit.cs index 07e2702..8651c53 100644 --- a/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit.cs +++ b/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit.cs @@ -89,7 +89,7 @@ public partial class SharpIdeCodeEdit : CodeEdit _selectionStartCol = GetSelectionFromColumn(); _selectionEndCol = GetSelectionToColumn(); _currentLine = GetCaretLine(); - GD.Print($"Selection changed to line {_currentLine}, start {_selectionStartCol}, end {_selectionEndCol}"); + // GD.Print($"Selection changed to line {_currentLine}, start {_selectionStartCol}, end {_selectionEndCol}"); } private async void OnTextChanged() @@ -287,7 +287,6 @@ public partial class SharpIdeCodeEdit : CodeEdit //_syntaxHighlighter.UpdateCache(); SyntaxHighlighter = null; SyntaxHighlighter = _syntaxHighlighter; // Reassign to trigger redraw - GD.Print("Provided syntax highlighting"); }).CallDeferred(); }