fix isadmin debug output

This commit is contained in:
Lukas 2021-10-01 21:13:53 +02:00
parent 55776e31cd
commit 31b745d048
1 changed files with 2 additions and 1 deletions

View File

@ -367,7 +367,8 @@ class TSbot:
self.pipeOut(e, lvl="ERROR")
return False
self.pipeOut(" ".join(groups), lvl="DEBUG")
self.pipeOut(str(groups.__dict__), lvl="DEBUG") # DEBUG
if self.allowed_sgids in groups:
self.pipeOut(f"[{cldbid}] ISADMIN: True")
return True