summaryrefslogtreecommitdiff
path: root/gtk2_ardour/processor_box.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-05-20 23:15:58 +0200
committerRobin Gareus <robin@gareus.org>2016-05-20 23:15:58 +0200
commit725665ac46c76b616f593df02d09ae92983bc977 (patch)
treed173d525f69380a907fe3d201554fafb5e911b7f /gtk2_ardour/processor_box.cc
parentd7e590f9c88ed5ca0b862dda146ff58ef4e1d842 (diff)
lua inline display error reporting
Diffstat (limited to 'gtk2_ardour/processor_box.cc')
-rw-r--r--gtk2_ardour/processor_box.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc
index 641ff9d33e..b2fa760b6b 100644
--- a/gtk2_ardour/processor_box.cc
+++ b/gtk2_ardour/processor_box.cc
@@ -1687,7 +1687,9 @@ ProcessorEntry::LuaPluginDisplay::render_inline (cairo_t *cr, uint32_t width)
return h;
}
} catch (luabridge::LuaException const& e) {
- ;
+#ifndef NDEBUG
+ cerr << "LuaException:" << e.what () << endl;
+#endif
}
return 0;
}