summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-02 16:38:45 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-02 16:38:45 +0000
commit53a6b186b667f0a6f04004fcb3fc348e3a031889 (patch)
treef166b69d3128ce1f2b658eebce4a1fc8c5e3b0db /src/inspircd.cpp
parente73ea26f832a8e3b51a9c06b362deeec7cfa3c20 (diff)
Added logging for when commands are added
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@358 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 29ee0d686..3f4de91d1 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -4192,6 +4192,7 @@ void createcommand(char* cmd, handlerfunc f, char flags, int minparams)
comm.use_count = 0;
comm.total_bytes = 0;
cmdlist.push_back(comm);
+ log(DEBUG,"Added command %s (%d parameters)",cmd,minparams);
}
void SetupCommandTable(void)