1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 13:22:52 +02:00
- Print out `RPL_BOUNCE` when it appears
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-16 08:05:34 +02:00
parent d66bec5fa6
commit 087eb954d1

View File

@ -139,6 +139,13 @@ public class Client : Thread
/* Default implementation */
logger.log("Response("~to!(string)(commandReply.getReplyType())~", "~commandReply.getFrom()~"): "~commandReply.toString());
import birchwood.protocol.constants : ReplyType;
if(commandReply.getReplyType() == ReplyType.RPL_BOUNCE)
{
logger.log("Take a look:\n\n"~commandReply.getParams());
}
}
/**