summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2016-01-02 17:15:26 -0500
committerAdam <Adam@anope.org>2016-01-02 17:15:26 -0500
commit8f6f2a2c479d7f13a59e283e8566c6779dc99112 (patch)
tree18e97eb5562e5c8a5f7a6db420878f2527d21ca1 /include
parent36a465473ec59b341b6f9582afe9126c8e7ffa4e (diff)
Add sasl log category for auth log messages
Diffstat (limited to 'include')
-rw-r--r--include/modules/sasl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules/sasl.h b/include/modules/sasl.h
index ec6d741ca..eca31d4af 100644
--- a/include/modules/sasl.h
+++ b/include/modules/sasl.h
@@ -92,7 +92,7 @@ namespace SASL
Session *s = sasl->GetSession(uid);
if (s)
{
- Log(Config->GetClient("NickServ")) << "A user identified to account " << this->GetAccount() << " using SASL";
+ Log(Config->GetClient("NickServ"), "sasl") << "A user identified to account " << this->GetAccount() << " using SASL";
sasl->Succeed(s, na->nc);
delete s;
}
@@ -117,7 +117,7 @@ namespace SASL
else if (na->nc->HasExt("NS_SUSPENDED"))
accountstatus = "suspended ";
- Log(Config->GetClient("NickServ")) << "A user failed to identify for " << accountstatus << "account " << this->GetAccount() << " using SASL";
+ Log(Config->GetClient("NickServ"), "sasl") << "A user failed to identify for " << accountstatus << "account " << this->GetAccount() << " using SASL";
}
};
}