summaryrefslogtreecommitdiff
path: root/src/nickserv.c
diff options
context:
space:
mode:
authordane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2005-05-05 16:58:03 +0000
committerdane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2005-05-05 16:58:03 +0000
commitd754468e298ac6c25263bcb5f97c31a13332371a (patch)
tree5996dff16f7e197296cf75e902d5426e91ec554f /src/nickserv.c
parent7a731e504b9bbb791b6e50701d5d12e9e37833cf (diff)
BUILD : 1.7.9 (776) BUGS : none NOTES : Prepended all debug messages for consistency.
git-svn-id: svn://svn.anope.org/anope/trunk@776 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@536 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/nickserv.c')
-rw-r--r--src/nickserv.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nickserv.c b/src/nickserv.c
index ac0cdd0ae..a68916c82 100644
--- a/src/nickserv.c
+++ b/src/nickserv.c
@@ -1183,7 +1183,7 @@ NickRequest *findrequestnick(const char *nick)
if (!*nick || !nick) {
if (debug) {
- alog("Error: findrequestnick() called with NULL values");
+ alog("debug: findrequestnick() called with NULL values");
}
return NULL;
}
@@ -1204,7 +1204,7 @@ NickAlias *findnick(const char *nick)
if (!nick || !*nick) {
if (debug) {
- alog("Error: findnick() called with NULL values");
+ alog("debug: findnick() called with NULL values");
}
return NULL;
}
@@ -1228,7 +1228,7 @@ NickCore *findcore(const char *nick)
if (!nick || !*nick) {
if (debug) {
- alog("Error: findcore() called with NULL values");
+ alog("debug: findcore() called with NULL values");
}
return NULL;
}
@@ -1797,8 +1797,8 @@ void clean_ns_timeouts(NickAlias * na)
next = t->next;
if (t->na == na) {
if (debug)
- alog("%s: deleting timeout type %d from %s", s_NickServ,
- t->type, t->na->nick);
+ alog("debug: %s deleting timeout type %d from %s",
+ s_NickServ, t->type, t->na->nick);
/* If the timeout has the TO_RELEASE type, we should release the user */
if (t->type == TO_RELEASE)
release(na, 1);