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.
This commit is contained in:
parent
59cc423694
commit
cb480b4c71
6
xC.c
6
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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue