From 40f6d58d5813d60af3221ef18f17d22268a1acd1 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Sat, 14 Jan 2017 21:34:15 -0500 Subject: [PATCH] Add debug log messages --- src/wmnotify.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/wmnotify.c b/src/wmnotify.c index 9646d38..2ad8615 100644 --- a/src/wmnotify.c +++ b/src/wmnotify.c @@ -189,7 +189,9 @@ static void DoubleClick(void) int status; if (wmnotify_infos.mail_client_argv[0] != NULL) { - /* Starting external mail client. */ + if (wmnotify_infos.debug) + printf("%s: Starting mail client\n", PACKAGE); + ExecuteCommand(wmnotify_infos.mail_client_argv); double_click_notif = true; @@ -367,6 +369,9 @@ static void *TimerThread(void *arg) if (wmnotify_infos.debug) printf("%s: Timer thread iteration.\n", PACKAGE); + if (manual_check && wmnotify_infos.debug) + printf("%s: Manual check requested\n", PACKAGE); + if ((manual_check == true) || (counter == 0)) { new_messages = CheckForNewMail(manual_check); manual_check = false; -- 2.20.1