Replace Console.WriteLine with Debug.WriteLine

This commit is contained in:
miku-666
2022-11-04 10:54:03 +01:00
parent f18388153c
commit 54f9fd4d5c

View File

@@ -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);
}