diff -r af2f8ddf6a1b -r bd5638c21834 mcabber/src/hooks.c --- a/mcabber/src/hooks.c Mon Jul 25 19:40:17 2005 +0100 +++ b/mcabber/src/hooks.c Mon Jul 25 21:46:35 2005 +0100 @@ -45,7 +45,7 @@ if (type && !strcmp(type, "error")) { message_flags = HBB_PREFIX_ERR | HBB_PREFIX_IN; - scr_LogPrint("Error message received from <%s>", jid); + scr_LogPrint(LPRINT_LOGNORM, "Error message received from <%s>", jid); } else message_flags = 0; @@ -79,7 +79,7 @@ inline void hk_statuschange(const char *jid, time_t timestamp, enum imstatus status, const char *status_msg) { - scr_LogPrint("Buddy status has changed: [%c>%c] <%s> %s", + scr_LogPrint(LPRINT_LOGNORM, "Buddy status has changed: [%c>%c] <%s> %s", imstatus2char[roster_getstatus(jid)], imstatus2char[status], jid, ((status_msg) ? status_msg : "")); roster_setstatus(jid, status, status_msg); @@ -96,7 +96,7 @@ if (!msg && (old_status == new_status)) return; - scr_LogPrint("Your status has changed: [%c>%c] %s", + scr_LogPrint(LPRINT_LOGNORM, "Your status has changed: [%c>%c] %s", imstatus2char[old_status], imstatus2char[new_status], ((msg) ? msg : "")); //hlog_write_status(NULL, 0, status); @@ -156,13 +156,13 @@ if (!arg_type || !arg_info) return; if ((pid=fork()) == -1) { - scr_LogPrint("Fork error, cannot launch external command."); + scr_LogPrint(LPRINT_LOGNORM, "Fork error, cannot launch external command."); return; } if (pid == 0) { // child if (execl(extcmd, extcmd, arg_type, arg_info, jid, arg_data) == -1) { - // ut_WriteLog("Cannot execute external command.\n"); + // scr_LogPrint(LPRINT_LOGNORM, "Cannot execute external command."); exit(1); } }