Remove some very verbose debug that isn't really needed anymore

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11512 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
w00t 2009-08-14 15:08:58 +00:00
parent 7527d8dd95
commit 54e04fe36a

View File

@ -520,7 +520,6 @@ bool User::HasPermission(const std::string &command)
bool User::HasPrivPermission(const std::string &privstr, bool noisy)
{
ServerInstance->Logs->Log("PRIVS", DEBUG, "Checking if I have " + privstr);
if (!IS_LOCAL(this))
{
ServerInstance->Logs->Log("PRIVS", DEBUG, "Remote (yes)");
@ -531,7 +530,6 @@ bool User::HasPrivPermission(const std::string &privstr, bool noisy)
{
if (noisy)
this->WriteServ("NOTICE %s :You are not an oper", this->nick.c_str());
ServerInstance->Logs->Log("PRIVS", DEBUG, "Not oper (no)");
return false;
}
@ -539,7 +537,6 @@ bool User::HasPrivPermission(const std::string &privstr, bool noisy)
{
if (noisy)
this->WriteServ("NOTICE %s :Privset empty(!?)", this->nick.c_str());
ServerInstance->Logs->Log("PRIVS", DEBUG, "No privs(?) (no)");
return false;
}