From b844d1cbbe79585facc69b9247baa8427cff0b62 Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 7 Feb 2007 21:58:22 +0000 Subject: Remove some debug git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6546 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modes/cmode_h.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/modes/cmode_h.cpp') diff --git a/src/modes/cmode_h.cpp b/src/modes/cmode_h.cpp index a77366c82..9bd061cd2 100644 --- a/src/modes/cmode_h.cpp +++ b/src/modes/cmode_h.cpp @@ -84,8 +84,6 @@ ModeAction ModeChannelHalfOp::OnModeChange(userrec* source, userrec* dest, chanr int status = channel->GetStatus(source); - ServerInstance->Log(DEBUG,"Halfop handler, source=%s channel=%s parameter=%s adding=%d",source->nick, channel->name, parameter.c_str(), adding); - /* Call the correct method depending on wether we're adding or removing the mode */ if (adding) { @@ -110,8 +108,6 @@ std::string ModeChannelHalfOp::AddHalfOp(userrec *user,const char* dest,chanrec { userrec *d = ServerInstance->Modes->SanityChecks(user,dest,chan,status); - ServerInstance->Log(DEBUG,"Add halfop"); - if (d) { if (IS_LOCAL(user)) @@ -131,7 +127,6 @@ std::string ModeChannelHalfOp::AddHalfOp(userrec *user,const char* dest,chanrec } } - ServerInstance->Log(DEBUG,"Calling Grant"); return ServerInstance->Modes->Grant(d,chan,UCMODE_HOP); } return ""; @@ -141,8 +136,6 @@ std::string ModeChannelHalfOp::DelHalfOp(userrec *user,const char *dest,chanrec { userrec *d = ServerInstance->Modes->SanityChecks(user,dest,chan,status); - ServerInstance->Log(DEBUG,"Del halfop"); - if (d) { if (IS_LOCAL(user)) @@ -162,7 +155,6 @@ std::string ModeChannelHalfOp::DelHalfOp(userrec *user,const char *dest,chanrec } } - ServerInstance->Log(DEBUG,"Calling revoke"); return ServerInstance->Modes->Revoke(d,chan,UCMODE_HOP); } return ""; -- cgit v1.2.3