From 7bd55a53bf4ee6bf3e1522369a6223c8c499d92f Mon Sep 17 00:00:00 2001 From: matclab Date: Sun, 12 Jul 2020 22:42:26 +0200 Subject: [PATCH] ignore_dbusclose: Add debug message when ignoring --- src/dbus.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dbus.c b/src/dbus.c index 20e24ff..a4501f6 100644 --- a/src/dbus.c +++ b/src/dbus.c @@ -495,6 +495,7 @@ static void dbus_cb_CloseNotification( guint32 id; g_variant_get(parameters, "(u)", &id); if (settings.ignore_dbusclose) { + LOG_D("Ignoring CloseNotification message"); // Stay commpliant by lying to the sender, telling him we closed the notification if (id > 0) { struct notification *n = queues_get_by_id(id);