From 4b43174c209fb1abf4cb72342aa27dc76eb8b938 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Sat, 18 Mar 2023 11:38:38 +0200 Subject: [PATCH] Client - Print the key-value pairs from `RPL_ISUPPORT` out --- source/birchwood/client/client.d | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/birchwood/client/client.d b/source/birchwood/client/client.d index 32c789c..c26bfba 100644 --- a/source/birchwood/client/client.d +++ b/source/birchwood/client/client.d @@ -159,6 +159,12 @@ public class Client : Thread // logger.log("<<<>>>"); // logger.log(); + import std.stdio; + writeln("Support stuff: ", commandReply.getKVPairs()); + + + + }