summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-17 17:58:24 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-17 17:58:24 +0000
commit44d4833d86039ca86765143f33dcc65abf9da897 (patch)
tree34fd8e5019c7c1bfbf75f44def4e4c1ffa28d9be /src
parentbea47caebd57fc6e103815437c2087134557d1dd (diff)
Remove some debug here, cuts down boot output
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6364 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/command_parse.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index a16b73b25..259d636d3 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -38,12 +38,10 @@ int InspIRCd::OperPassCompare(const char* data,const char* input, int tagnumber)
{
int MOD_RESULT = 0;
FOREACH_RESULT_I(this,I_OnOperCompare,OnOperCompare(data, input, tagnumber))
- Log(DEBUG,"OperPassCompare: %d",MOD_RESULT);
if (MOD_RESULT == 1)
return 0;
if (MOD_RESULT == -1)
return 1;
- Log(DEBUG,"strcmp fallback: '%s' '%s' %d",data,input,strcmp(data,input));
return strcmp(data,input);
}
@@ -175,7 +173,6 @@ int CommandParser::LoopCall(userrec* user, command_t* CommandObj, const char** p
std::map<irc::string, bool> dupes;
/* Only one commasepstream here */
- ServerInstance->Log(DEBUG,"Splitting '%s'",parameters[splithere]);
irc::commasepstream items1(parameters[splithere]);
std::string item = "*";
unsigned int max = 0;
@@ -420,10 +417,7 @@ bool CommandParser::CreateCommand(command_t *f, void* so_handle)
if (so_handle)
{
if (RFCCommands.find(f->command) == RFCCommands.end())
- {
RFCCommands[f->command] = so_handle;
- ServerInstance->Log(DEBUG,"Monitoring RFC-specified reloadable command at %8x",so_handle);
- }
else
{
ServerInstance->Log(DEFAULT,"ERK! Somehow, we loaded a cmd_*.so file twice! Only the first instance is being recorded.");
@@ -435,7 +429,6 @@ bool CommandParser::CreateCommand(command_t *f, void* so_handle)
if (cmdlist.find(f->command) == cmdlist.end())
{
cmdlist[f->command] = f;
- ServerInstance->Log(DEBUG,"Added command %s (%d parameters)", f->command.c_str(), f->min_params);
return true;
}
else return false;
@@ -517,8 +510,6 @@ void CommandParser::LoadCommand(const char* name)
command_t* (*cmd_factory_func)(InspIRCd*);
snprintf(filename, MAXBUF, "%s/%s", LIBRARYDIR, name);
- ServerInstance->Log(DEBUG,"Load command: %s", filename);
-
h = dlopen(filename, RTLD_NOW | RTLD_GLOBAL);
if (!h)