summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-04-12 08:56:22 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-04-12 08:57:59 -0600
commit920a77f6af7a35fd2b0c03d600e1d3faa9ce5951 (patch)
tree0cba8680edbceeef2515df5993fddf0dbed3e4a7 /libs
parentbfe65ea1e4b3366ba065127dee1be92058b42400 (diff)
add debug trace to code that actually saves bindings to disk
Diffstat (limited to 'libs')
-rw-r--r--libs/gtkmm2ext/keyboard.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/gtkmm2ext/keyboard.cc b/libs/gtkmm2ext/keyboard.cc
index cb395f62ef..2755d1eb17 100644
--- a/libs/gtkmm2ext/keyboard.cc
+++ b/libs/gtkmm2ext/keyboard.cc
@@ -658,6 +658,8 @@ Keyboard::store_keybindings (string const & path)
XMLNode* bnode;
int ret = 0;
+ DEBUG_TRACE (DEBUG::Bindings, string_compose ("save bindings to %1\n", path));
+
for (list<Bindings*>::const_iterator b = Bindings::bindings.begin(); b != Bindings::bindings.end(); ++b) {
bnode = new XMLNode (X_("Bindings"));
bnode->set_property (X_("name"), (*b)->name());