From cb480b4c71d70ed19ea67a7594e1353b16ed897a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Sun, 5 Sep 2021 02:51:05 +0200 Subject: [PATCH] xC: show orphan outcoming actions differently It's hard to think of anything actually good here. This would be an exceptionally rare thing to do, anyway. --- xC.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/xC.c b/xC.c index 5ed60a7..6bba09a 100644 --- a/xC.c +++ b/xC.c @@ -4162,6 +4162,9 @@ log_full (struct app_context *ctx, struct server *s, struct buffer *buffer, log_server_status ((s), (s)->buffer, "Notice -> #n: #m", (target), (text)) #define log_outcoming_orphan_privmsg(s, target, text) \ log_server_status ((s), (s)->buffer, "MSG(#n): #m", (target), (text)) +#define log_outcoming_orphan_action(s, target, text) \ + log_server_status ((s), (s)->buffer, "MSG(#n): #a*#r #m", (target), \ + ATTR_ACTION, (text)) #define log_ctcp_query(s, target, tag) \ log_server_status ((s), (s)->buffer, "CTCP query to #S: #S", target, tag) @@ -6587,8 +6590,9 @@ irc_handle_sent_privmsg_text (struct server *s, prefixes, s->irc_user->nickname, text->str); free (prefixes); } + else if (is_action) + log_outcoming_orphan_action (s, target, text->str); else - // TODO: also handle actions here log_outcoming_orphan_privmsg (s, target, text->str); }