mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 10:39:02 -04:00
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:
parent
7527d8dd95
commit
54e04fe36a
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user