summaryrefslogtreecommitdiff
path: root/libs/ardour/luaproc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/luaproc.cc')
-rw-r--r--libs/ardour/luaproc.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/luaproc.cc b/libs/ardour/luaproc.cc
index da7be47d21..63b4e11299 100644
--- a/libs/ardour/luaproc.cc
+++ b/libs/ardour/luaproc.cc
@@ -602,6 +602,10 @@ LuaProc::configure_io (ChanCount in, ChanCount out)
try {
lua_dsp_configure (&in, &out);
} catch (luabridge::LuaException const& e) {
+ PBD::error << "LuaException: " << e.what () << "\n";
+#ifndef NDEBUG
+ std::cerr << "LuaException: " << e.what () << "\n";
+#endif
return false;
}
}