diff options
author | dane 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 |
---|---|---|
committer | dane 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 |
commit | d754468e298ac6c25263bcb5f97c31a13332371a (patch) | |
tree | 5996dff16f7e197296cf75e902d5426e91ec554f /src/protocol/ultimate2.c | |
parent | 7a731e504b9bbb791b6e50701d5d12e9e37833cf (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/protocol/ultimate2.c')
-rw-r--r-- | src/protocol/ultimate2.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/protocol/ultimate2.c b/src/protocol/ultimate2.c index 70485ca18..3c3927deb 100644 --- a/src/protocol/ultimate2.c +++ b/src/protocol/ultimate2.c @@ -451,7 +451,7 @@ int anope_event_setname(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETNAME for nonexistent user %s", source); + alog("debug: SETNAME for nonexistent user %s", source); } return MOD_CONT; } @@ -470,7 +470,7 @@ int anope_event_chgname(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGNAME for nonexistent user %s", av[0]); + alog("debug: CHGNAME for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -489,7 +489,7 @@ int anope_event_setident(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETIDENT for nonexistent user %s", source); + alog("debug: SETIDENT for nonexistent user %s", source); } return MOD_CONT; } @@ -508,7 +508,7 @@ int anope_event_chgident(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGIDENT for nonexistent user %s", av[0]); + alog("debug: CHGIDENT for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -527,7 +527,7 @@ int anope_event_sethost(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETHOST for nonexistent user %s", source); + alog("debug: SETHOST for nonexistent user %s", source); } return MOD_CONT; } @@ -564,7 +564,7 @@ int anope_event_chghost(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGHOST for nonexistent user %s", av[0]); + alog("debug: CHGHOST for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -1549,7 +1549,7 @@ int anope_event_error(char *source, int ac, char **av) { if (av[0]) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; |