diff options
author | 2020-10-05 16:41:27 +0800 | |
---|---|---|
committer | 2020-10-05 16:41:27 +0800 | |
commit | adb383a84007eb2c84a63f9b1f9324fdd2fcfbcb (patch) | |
tree | 57520dc03aea065a57cf9f251ea6c9634331baab /bot | |
parent | add logging generated url (diff) |
update logging query url
Diffstat (limited to 'bot')
-rw-r--r-- | bot/exts/halloween/hacktoberstats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/halloween/hacktoberstats.py b/bot/exts/halloween/hacktoberstats.py index 53f6d9dc..af79ce7e 100644 --- a/bot/exts/halloween/hacktoberstats.py +++ b/bot/exts/halloween/hacktoberstats.py @@ -251,7 +251,7 @@ class HacktoberStats(commands.Cog): f"+created:{date_range}" f"&per_page={per_page}" ) - logging.info(f"Query URL generated: {query_url}") + logging.debug(f"GitHub query URL generated: {query_url}") async with aiohttp.ClientSession() as session: async with session.get(query_url, headers=REQUEST_HEADERS) as resp: |