feat: improve IRC command handling with debug logging for incoming messages

This commit is contained in:
HueByte
2026-02-23 10:54:02 +01:00
parent c2a8e9cfc8
commit 3c760b0bd8
2 changed files with 5 additions and 2 deletions
@@ -44,6 +44,8 @@ public sealed class IrcCommandHandler
line = line.TrimEnd('\r', '\n');
if (string.IsNullOrWhiteSpace(line)) continue;
_logger.LogDebug("IRC < {Id}: {Line}", _conn.ConnectionId, line);
var msg = IrcMessage.Parse(line);
try