1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-14 11:33:14 +00:00

Change a debug printf to DBGP.

This commit is contained in:
Brenden Matthews 2010-06-18 12:02:34 -07:00
parent b03541a91c
commit 8b53d902d3

View File

@ -497,7 +497,8 @@ struct mail_s *parse_mail_args(char type, const char *arg)
} else { } else {
mail->command[0] = '\0'; mail->command[0] = '\0';
} }
printf("'%s' '%s'\n", mail->folder, mail->command); DBGP("mail args parsed: folder: '%s' command: '%s' user: '%s' host: '%s'\n",
mail->folder, mail->command, mail->user, mail->host);
mail->p_timed_thread = NULL; mail->p_timed_thread = NULL;
return mail; return mail;
} }