From 5fd2d6cc81302a13a0b85c54ab0afd6f0ad2f6b2 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 17 Nov 2020 02:44:11 +0100 Subject: [PATCH] VST3: add debug message for preset/state restore --- libs/ardour/vst3_plugin.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/vst3_plugin.cc b/libs/ardour/vst3_plugin.cc index 25d61aba9d..31108da36f 100644 --- a/libs/ardour/vst3_plugin.cc +++ b/libs/ardour/vst3_plugin.cc @@ -765,6 +765,7 @@ VST3Plugin::load_preset (PresetRecord r) if (Glib::file_test (fn, Glib::FILE_TEST_EXISTS)) { RAMStream stream (fn); ok = _plug->load_state (stream); + DEBUG_TRACE (DEBUG::VST3Config, string_compose ("VST3Plugin::load_preset: file %1 status %2\n", fn, ok ? "OK" : "error")); } }