fix(aurora): add a debug logging statement
Some checks failed
Actions / Build Documentation (MkDocs) (pull_request) Failing after 25s
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 38s

This commit is contained in:
Seaswimmer 2024-07-06 13:12:47 -04:00
parent aae4370868
commit 13874dd4f0
Signed by: cswimr
GPG key ID: 3813315477F26F82

View file

@ -198,6 +198,8 @@ class Moderation(AuroraGuildModel):
moderation_type = str.lower(result[2])
if moderation_type in type_registry:
moderation_type = type_registry[moderation_type]
else:
logger.error("Unknown moderation type in case %s: %s", result[0], result[2])
case = {
"moderation_id": int(result[0]),