summaryrefslogtreecommitdiff
path: root/plugins/placement
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/placement')
-rw-r--r--plugins/placement/history.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/placement/history.c b/plugins/placement/history.c
index 27efa677..a7460b3d 100644
--- a/plugins/placement/history.c
+++ b/plugins/placement/history.c
@@ -1,3 +1,4 @@
+#include "kernel/debug.h"
#include "kernel/openbox.h"
#include "kernel/dispatch.h"
#include "kernel/frame.h"
@@ -145,7 +146,7 @@ static void save_history()
for (it = history_list; it; it = g_slist_next(it)) {
struct HistoryItem *hi = it->data;
- g_message("adding %s", hi->name);
+ ob_debug("adding %s\n", hi->name);
node = xmlNewChild(root, NULL, (const xmlChar*) "entry", NULL);
xmlNewProp(node, (const xmlChar*) "name", (const xmlChar*) hi->name);
xmlNewProp(node, (const xmlChar*) "class", (const xmlChar*) hi->class);