From 0f53028972e92a6926d01e3f784efe0d07856a34 Mon Sep 17 00:00:00 2001 From: Alex <15199219+muskit@users.noreply.github.com> Date: Mon, 1 Sep 2025 01:02:27 -0700 Subject: [PATCH] clean up debug prints --- src/ExportOperation/Exporter.cs | 1 - src/UI/Views/Export/Export.axaml.cs | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/ExportOperation/Exporter.cs b/src/ExportOperation/Exporter.cs index c67032c..10780eb 100644 --- a/src/ExportOperation/Exporter.cs +++ b/src/ExportOperation/Exporter.cs @@ -52,7 +52,6 @@ public class Exporter var audioKey = ec.Item1.AudioPath; var audioExportFileName = $"{audioKey}.{options.AudioFormat.ToString().ToLower()}"; var audioExportPath = Path.Combine(exportSongPath, audioExportFileName); - Console.WriteLine(audioExportFileName); if (!finishedAudio.Contains(audioKey) && Database.AudioPaths.ContainsKey(audioKey)) { var audioSourcePath = Database.AudioPaths[audioKey]; diff --git a/src/UI/Views/Export/Export.axaml.cs b/src/UI/Views/Export/Export.axaml.cs index f2d3233..1e35d2c 100644 --- a/src/UI/Views/Export/Export.axaml.cs +++ b/src/UI/Views/Export/Export.axaml.cs @@ -116,12 +116,10 @@ public partial class Export : Panel if ((bool)RadioExportAll.IsChecked!) { - Console.WriteLine("Adding DB songs to rows..."); Database.Songs.ToList().ForEach((s) => Rows.Add(new ExportRow { Song = s })); } else { - Console.WriteLine("Adding selections to rows..."); Selection.Selections.ToList().ForEach((s) => Rows.Add(new ExportRow { Song = s })); } }