mirror of
https://github.com/muskit/MercuryConverter.git
synced 2026-06-02 20:24:26 -07:00
clean up debug prints
This commit is contained in:
@@ -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];
|
||||
|
||||
@@ -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 }));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user