From eae5064f39412d46a22754c97c6791c8b2a83684 Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Fri, 3 Apr 2020 22:49:38 +0000
Subject: [PATCH] Loggasm.

---
 exec/ircd.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/exec/ircd.js b/exec/ircd.js
index 87a0a8c6f1..bb684f96ae 100644
--- a/exec/ircd.js
+++ b/exec/ircd.js
@@ -3008,7 +3008,9 @@ function IRCClient_check_queues() {
 	while (this.recvq.queue.length) {
 		cmd = this.recvq.del();
 		Global_CommandLine = cmd;
+log(LOG_DEBUG, "CMD: "+cmd);
 		this.work(cmd);
+log(LOG_DEBUG, "Replaced with? "+(this.replaced_with !== undefined));
 		if (this.replaced_with !== undefined)
 			this.replaced_with.check_queues();
 	}
-- 
GitLab