Add debug log messages
authorHugo Villeneuve <hugo@hugovil.com>
Sun, 15 Jan 2017 02:34:15 +0000 (21:34 -0500)
committerHugo Villeneuve <hugo@hugovil.com>
Fri, 15 Feb 2019 22:14:53 +0000 (17:14 -0500)
src/wmnotify.c

index 9646d38..2ad8615 100644 (file)
@@ -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;