13
0

VST3: add debug message for preset/state restore

This commit is contained in:
Robin Gareus 2020-11-17 02:44:11 +01:00
parent 0d8f4eb95a
commit 5fd2d6cc81
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -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"));
}
}