1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 20:13:13 +02:00

Get rid of Debug(()) function calls. I never use it anyway.

This commit is contained in:
Bram Matthys
2021-07-12 18:54:05 +02:00
parent a57bdba220
commit 05aeba9ba9
21 changed files with 2 additions and 105 deletions
-4
View File
@@ -189,8 +189,6 @@ void parse(Client *cptr, char *buffer, int length)
return;
}
Debug((DEBUG_ERROR, "Parsing: %s (from %s)", buffer, (*cptr->name ? cptr->name : "*")));
if (IsDeadSocket(cptr))
return;
@@ -407,8 +405,6 @@ static void parse2(Client *cptr, Client **fromptr, MessageTag *mtags, int mtags_
sendto_one(from, NULL, ":%s %d %s %s :Unknown command",
me.name, ERR_UNKNOWNCOMMAND,
from->name, ch);
Debug((DEBUG_ERROR, "Unknown (%s) from %s",
ch, get_client_name(cptr, TRUE)));
}
}
ircstats.is_unco++;