Remove some useless print() calls for debugging

STDOUT is too messy, thanks
This commit is contained in:
hedy 2022-03-30 09:23:15 +08:00
parent 445f8df2ed
commit 0aa78488fe
Signed by: hedy
GPG Key ID: B51B5A8D1B176372
1 changed files with 0 additions and 4 deletions

View File

@ -133,12 +133,9 @@ class Server(BaseServer):
if self.disconnected or "chans" not in list(dir(self)):
return
if name == self.name and len(SERVERS[name]["chans"]) == 1:
print("NAME", name, self.name)
return
print(self.name)
for c in self.chans_actual:
# if c != chan:
print("RELAYING", c)
s = f"\x0f\x0f\x0f\x0f<{nick[:1]}\u200c{nick[1:]}/{name}"
if not hide:
s += f"{chan}"
@ -151,7 +148,6 @@ class Server(BaseServer):
nargs = []
isComb = False
for arg in args:
print("a", arg)
if arg[0] == ":":
isComb = True
nargs.append(arg[1:])