From 24e5c9bde96e66b8ae6574a53fdf67b187d9615b Mon Sep 17 00:00:00 2001 From: James Crook Date: Sat, 22 Feb 2020 19:06:01 +0000 Subject: [PATCH] Remove old printfs These were introduced when working on import/export of presets. --- src/effects/Effect.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/effects/Effect.cpp b/src/effects/Effect.cpp index c29f20f8c..198171182 100644 --- a/src/effects/Effect.cpp +++ b/src/effects/Effect.cpp @@ -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())