clean up debug prints

This commit is contained in:
Alex
2025-09-01 01:02:27 -07:00
parent 27a82ac451
commit 0f53028972
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -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];
-2
View File
@@ -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 }));
}
}