diff options
author | Adam <Adam@anope.org> | 2010-08-27 20:56:28 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-08-27 20:56:28 -0400 |
commit | c2ddecc2b1dbc9d055166bdf296da2e4536f74f6 (patch) | |
tree | 9b98582630a2debab628e23d4d796885f50ada74 /modules/core/ns_set.cpp | |
parent | 73fb94c55344b6ad788c925bf13325236402891f (diff) |
Added a new logging system
Diffstat (limited to 'modules/core/ns_set.cpp')
-rw-r--r-- | modules/core/ns_set.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/ns_set.cpp b/modules/core/ns_set.cpp index fde4d6cb5..2eb7c6a19 100644 --- a/modules/core/ns_set.cpp +++ b/modules/core/ns_set.cpp @@ -175,7 +175,8 @@ class CommandNSSetPassword : public Command if (enc_encrypt(param, u->Account()->pass) < 0) { - Alog() << Config->s_NickServ << ": Failed to encrypt password for " << u->Account()->display << " (set)"; + // XXX ? + //Alog() << Config->s_NickServ << ": Failed to encrypt password for " << u->Account()->display << " (set)"; notice_lang(Config->s_NickServ, u, NICK_SASET_PASSWORD_FAILED); return MOD_CONT; } @@ -186,7 +187,6 @@ class CommandNSSetPassword : public Command else notice_lang(Config->s_NickServ, u, NICK_SASET_PASSWORD_CHANGED, u->Account()->display.c_str()); - Alog() << Config->s_NickServ << ": " << u->GetMask() << " (e-mail: " << (!u->Account()->email.empty() ? u->Account()->email : "none") << ") changed its password."; return MOD_CONT; } |