1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-15 07:50:22 +02:00

Remove old printfs

These were introduced when working on import/export of presets.
This commit is contained in:
James Crook 2020-02-22 19:06:01 +00:00
parent acf91a70e0
commit 24e5c9bde9

View File

@ -664,10 +664,7 @@ bool Effect::CanExportPresets()
void Effect::ExportPresets()
{
wxString params;
if (!GetAutomationParameters(params))
{
wxLogDebug("No Params");
}
GetAutomationParameters(params);
wxFileName path;
@ -687,8 +684,6 @@ void Effect::ExportPresets()
path = dlog.GetPath();
gPrefs->Write(wxT("Presets/Path"), path.GetFullPath());
wxLogDebug("Params: %s", params);
// Create/Open the file
wxFFile f(path.GetFullPath(), wxT("wb"));
if (!f.IsOpened())