forked from cswimr/SeaCogs
fix(pterodactyl): adding debug strings to check_if_chat_message
This commit is contained in:
parent
f588caf25f
commit
236cb1d815
1 changed files with 8 additions and 0 deletions
|
@ -90,6 +90,7 @@ class Pterodactyl(commands.Cog):
|
||||||
content = pagify(content, delims=[" ", "\n"])
|
content = pagify(content, delims=[" ", "\n"])
|
||||||
for page in content:
|
for page in content:
|
||||||
await channel.send(content=page)
|
await channel.send(content=page)
|
||||||
|
|
||||||
chat_message = await self.check_if_chat_message(content)
|
chat_message = await self.check_if_chat_message(content)
|
||||||
if chat_message:
|
if chat_message:
|
||||||
info = await self.get_info(chat_message['username'])
|
info = await self.get_info(chat_message['username'])
|
||||||
|
@ -117,12 +118,19 @@ class Pterodactyl(commands.Cog):
|
||||||
async def check_if_chat_message(self, text: str) -> Union[bool, dict]:
|
async def check_if_chat_message(self, text: str) -> Union[bool, dict]:
|
||||||
self.logger.debug("Checking if message is a chat message")
|
self.logger.debug("Checking if message is a chat message")
|
||||||
regex = await self.config.chat_regex()
|
regex = await self.config.chat_regex()
|
||||||
|
self.logger.debug('1')
|
||||||
match: Optional[re.Match[str]] = re.match(regex, text)
|
match: Optional[re.Match[str]] = re.match(regex, text)
|
||||||
|
self.logger.debug('2')
|
||||||
if match:
|
if match:
|
||||||
|
self.logger.debug('3')
|
||||||
dict = {"time": match.group(1), "username": match.group(2), "message": match.group(3)}
|
dict = {"time": match.group(1), "username": match.group(2), "message": match.group(3)}
|
||||||
|
self.logger.debug('4')
|
||||||
self.logger.debug("Message is a chat message\n%s", json.dumps(dict))
|
self.logger.debug("Message is a chat message\n%s", json.dumps(dict))
|
||||||
|
self.logger.debug('5')
|
||||||
return dict
|
return dict
|
||||||
|
self.logger.debug('6')
|
||||||
self.logger.debug("Message is not a chat message")
|
self.logger.debug("Message is not a chat message")
|
||||||
|
self.logger.debug('7')
|
||||||
return False
|
return False
|
||||||
|
|
||||||
async def get_info(self, username: str) -> Optional[dict]:
|
async def get_info(self, username: str) -> Optional[dict]:
|
||||||
|
|
Loading…
Reference in a new issue