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:
parent
acf91a70e0
commit
24e5c9bde9
@ -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())
|
||||
|
Loading…
x
Reference in New Issue
Block a user