Skip to content

Commit ba5826b

Browse files
committed
Remove debugging setting
1 parent b9b14de commit ba5826b

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

env.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ def __init__(self):
1212
self.TITO_ACCOUNT_SLUG: str = environ.get("TITO_ACCOUNT_SLUG", "")
1313
self.TITO_EVENT_SLUG: str = environ.get("TITO_EVENT_SLUG", "")
1414
self.TITO_QUESTION_SLUG: str = environ.get("TITO_QUESTION_SLUG", "")
15-
self.ENABLED_EXTENSIONS: list = environ.get("ENABLED_EXTENSIONS", "").split(",")
1615

1716

1817
env = Environment()

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
format="%(asctime)s %(levelname)s: %(message)s",
88
datefmt="%d-%m-%Y %H:%M:%S",
99
encoding="utf-8",
10-
level=logging.DEBUG)
10+
level=logging.INFO)
1111

1212
intents = discord.Intents.default()
1313
intents.members = True

utils/tito.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ def __init__(self, api_token: str, account_slug: str, event_slug: str):
1717

1818
async def fetch_question_answers(self, question_slug: str) -> list[dict]:
1919
endpoint = f"{self.url_base}/questions/{question_slug}/answers"
20-
logging.debug(endpoint)
2120

2221
async with aiohttp.ClientSession() as session:
2322
async with session.get(endpoint, headers=self.base_headers) as response:

0 commit comments

Comments
 (0)