Clean up debug output

Remove the unnecessary util.c/util.h files and use purple_debug_info()
throughout instead. This is more direct. Also replace all usages of
printf() with the same helper.

This makes the Delta plugin usable in command-line applications like
Finch. Previously, the printf() output was messing up the screen!
This commit is contained in:
2019-04-21 21:27:45 +01:00
parent 669f270301
commit 81ccd8c82c
5 changed files with 19 additions and 40 deletions

View File

@@ -27,4 +27,6 @@
#define PLUGIN_ACCOUNT_OPT_SMTP_USER "send_user"
#define PLUGIN_ACCOUNT_OPT_SMTP_PASS "send_pw"
#define UNUSED(x) (void)(x)
#endif