Remove unnecessary logging

This commit is contained in:
Matt Parker
2025-10-08 22:58:42 +10:00
parent 9d00a6d033
commit f25a3d600e

View File

@@ -89,7 +89,7 @@ public partial class SharpIdeCodeEdit : CodeEdit
_selectionStartCol = GetSelectionFromColumn(); _selectionStartCol = GetSelectionFromColumn();
_selectionEndCol = GetSelectionToColumn(); _selectionEndCol = GetSelectionToColumn();
_currentLine = GetCaretLine(); _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() private async void OnTextChanged()
@@ -287,7 +287,6 @@ public partial class SharpIdeCodeEdit : CodeEdit
//_syntaxHighlighter.UpdateCache(); //_syntaxHighlighter.UpdateCache();
SyntaxHighlighter = null; SyntaxHighlighter = null;
SyntaxHighlighter = _syntaxHighlighter; // Reassign to trigger redraw SyntaxHighlighter = _syntaxHighlighter; // Reassign to trigger redraw
GD.Print("Provided syntax highlighting");
}).CallDeferred(); }).CallDeferred();
} }