summaryrefslogtreecommitdiff
path: root/include/modules/sasl.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2017-03-19 18:55:32 -0400
committerAdam <Adam@anope.org>2017-03-19 18:55:32 -0400
commit0fcc66711bc0ae31469bd67044d968c33bacb824 (patch)
treebab07874bb7387dc8f539eee27c81c1fc5306b4f /include/modules/sasl.h
parent8d9574e3061d7728b035f77a50995b87ba1c37dd (diff)
m_sasl: pass module to logger
Diffstat (limited to 'include/modules/sasl.h')
-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 249a4c3b0..b4fbe0d94 100644
--- a/include/modules/sasl.h
+++ b/include/modules/sasl.h
@@ -102,7 +102,7 @@ namespace SASL
if (!hostname.empty() && !ip.empty())
user = hostname + " (" + ip + ")";
- Log(Config->GetClient("NickServ"), "sasl") << user << " identified to account " << this->GetAccount() << " using SASL";
+ Log(this->GetOwner(), "sasl", Config->GetClient("NickServ")) << user << " identified to account " << this->GetAccount() << " using SASL";
sasl->Succeed(s, na->nc);
delete s;
}
@@ -133,7 +133,7 @@ namespace SASL
if (!hostname.empty() && !ip.empty())
user = hostname + " (" + ip + ")";
- Log(Config->GetClient("NickServ"), "sasl") << user << " failed to identify for " << accountstatus << "account " << this->GetAccount() << " using SASL";
+ Log(this->GetOwner(), "sasl", Config->GetClient("NickServ")) << user << " failed to identify for " << accountstatus << "account " << this->GetAccount() << " using SASL";
}
};
}