From 54f9fd4d5cfe920074dd36ee8b314520db91c324 Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Fri, 4 Nov 2022 10:54:03 +0100 Subject: [PATCH] Replace `Console.WriteLine` with `Debug.WriteLine` --- PCK-Studio/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCK-Studio/MainForm.cs b/PCK-Studio/MainForm.cs index 4ab50882..650efe86 100644 --- a/PCK-Studio/MainForm.cs +++ b/PCK-Studio/MainForm.cs @@ -2679,7 +2679,7 @@ namespace PckStudio { if (treeViewMain.SelectedNode is TreeNode t && t.Tag is PCKFile.FileData file) { - Console.WriteLine($"Setting {file.filetype} to {type}"); + Debug.WriteLine($"Setting {file.filetype} to {type}"); file.filetype = type; SetPckFileIcon(t, type); }