diff options
author | Sadie Powell <sadie@witchery.services> | 2025-03-19 13:37:11 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-03-19 13:37:11 +0000 |
commit | 6d72fd67d8bc33a1aaf6e14c74374bc04e0abe7e (patch) | |
tree | 437eab4250e10bef904b4bfc71abf596b76841c7 /src/uplink.cpp | |
parent | 0a11bc769388dc324428915e6ed1ed8981ab0eaa (diff) |
Improve logging about the protocol module on startup.
Diffstat (limited to 'src/uplink.cpp')
-rw-r--r-- | src/uplink.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uplink.cpp b/src/uplink.cpp index ec6dbc199..c8bfc0b3b 100644 --- a/src/uplink.cpp +++ b/src/uplink.cpp @@ -57,7 +57,7 @@ void Uplink::Connect() UplinkSock->Bind(Config->GetBlock("serverinfo").Get<const Anope::string>("localhost")); FOREACH_MOD(OnPreServerConnect, ()); Anope::string ip = Anope::Resolve(u.host, u.protocol); - Log(LOG_TERMINAL) << "Attempting to connect to uplink #" << (Anope::CurrentUplink + 1) << " " << ip << " (" << u.str() << ") with protocol " << IRCD->GetProtocolName(); + Log(LOG_TERMINAL) << "Attempting to connect to uplink #" << (Anope::CurrentUplink + 1) << " " << ip << " (" << u.str() << ")"; UplinkSock->Connect(ip, u.port); } |