From ae51414b997ef9db7e03c7f10d5b0e89d116bf33 Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Fri, 3 Apr 2020 20:02:56 +0000
Subject: [PATCH] Log the host as well as the name when autoconnecting.

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

diff --git a/exec/ircd.js b/exec/ircd.js
index 258811671d..1b3d119368 100644
--- a/exec/ircd.js
+++ b/exec/ircd.js
@@ -304,7 +304,7 @@ while (!js.terminated) {
 		   ) {
 			umode_notice(USERMODE_ROUTING,"Routing",
 				"Auto-connecting to " +
-				CLines[thisCL].servername);
+				CLines[thisCL].servername + " ("+CLines[thisCL].host+")");
 			connect_to_server(CLines[thisCL]);
 		}
 	}
-- 
GitLab