summaryrefslogtreecommitdiff
path: root/libs/ardour/lv2_plugin.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-07-31 20:58:47 -0400
committerDavid Robillard <d@drobilla.net>2016-07-31 20:58:47 -0400
commitae71e57e2422466716c0ec68ac841d778cf26e94 (patch)
tree8b70ecf78d5cb144d44e73feedd8152e16948d7c /libs/ardour/lv2_plugin.cc
parent48057472608f25f31d76ced4c51bee2b2b5337da (diff)
Support LV2 log trace messages
Diffstat (limited to 'libs/ardour/lv2_plugin.cc')
-rw-r--r--libs/ardour/lv2_plugin.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/lv2_plugin.cc b/libs/ardour/lv2_plugin.cc
index daf781e4f5..7ecc0980ab 100644
--- a/libs/ardour/lv2_plugin.cc
+++ b/libs/ardour/lv2_plugin.cc
@@ -258,8 +258,9 @@ log_vprintf(LV2_Log_Handle /*handle*/,
warning << str << endmsg;
} else if (type == URIMap::instance().urids.log_Note) {
info << str << endmsg;
+ } else if (type == URIMap::instance().urids.log_Trace) {
+ DEBUG_TRACE(DEBUG::LV2, str);
}
- // TODO: Toggleable log:Trace message support
return ret;
}