summaryrefslogtreecommitdiff
path: root/modules/extra/m_ldap_oper.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2014-07-11 00:22:32 -0400
committerAdam <Adam@anope.org>2014-07-11 00:22:32 -0400
commit7a64d95f7c796d91dbe1250dc1d88ecf8c113610 (patch)
tree4cf4031cce2aa9515eca6cba90b352c15b3c6b9e /modules/extra/m_ldap_oper.cpp
parent07902c03fde41205e5366b852553f1c74c9746dd (diff)
Fix Log() calls in m_ldap_oper
Diffstat (limited to 'modules/extra/m_ldap_oper.cpp')
-rw-r--r--modules/extra/m_ldap_oper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/extra/m_ldap_oper.cpp b/modules/extra/m_ldap_oper.cpp
index 3e16d75e6..05579da0b 100644
--- a/modules/extra/m_ldap_oper.cpp
+++ b/modules/extra/m_ldap_oper.cpp
@@ -50,7 +50,7 @@ class IdentifyInterface : public LDAPInterface
o = new Oper(u->nick, ot);
my_opers.insert(o);
nc->o = o;
- Log(this->owner) << "m_ldap_oper: Tied " << u->nick << " (" << nc->display << ") to opertype " << ot->GetName();
+ Log(this->owner) << "Tied " << u->nick << " (" << nc->display << ") to opertype " << ot->GetName();
}
}
catch (const LDAPException &ex)
@@ -64,7 +64,7 @@ class IdentifyInterface : public LDAPInterface
}
nc->o = NULL;
- Log() << "Removed services operator from " << u->nick << " (" << nc->display << ")";
+ Log(this->owner) << "Removed services operator from " << u->nick << " (" << nc->display << ")";
}
}
}