From: Hugo Villeneuve Date: Sun, 15 Jan 2017 02:34:15 +0000 (-0500) Subject: Add debug log messages X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=40f6d58d5813d60af3221ef18f17d22268a1acd1;p=dockapps%2Fwmnotify.git Add debug log messages --- 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;