mirror of
https://github.com/znc/znc.git
synced 2026-08-07 17:33:34 +02:00
Fix the "Connecting user/network" message
This debug line was printing the network twice instead of the username
This commit is contained in:
+1
-1
@@ -840,7 +840,7 @@ bool CIRCNetwork::Connect() {
|
||||
CIRCSock *pIRCSock = new CIRCSock(this);
|
||||
pIRCSock->SetPass(pServer->GetPass());
|
||||
|
||||
DEBUG("Connecting user/network [" << m_sName << "/" << m_sName << "]");
|
||||
DEBUG("Connecting user/network [" << m_pUser->GetUserName() << "/" << m_sName << "]");
|
||||
|
||||
NETWORKMODULECALL(OnIRCConnecting(pIRCSock), m_pUser, this, NULL,
|
||||
DEBUG("Some module aborted the connection attempt");
|
||||
|
||||
Reference in New Issue
Block a user