diff options
author | 2020-10-05 08:04:15 +0800 | |
---|---|---|
committer | 2020-10-05 08:04:15 +0800 | |
commit | 65b2228595925fc13f3c3c73062be0494f53e622 (patch) | |
tree | b4248c692de1ebea2e8cd3f6f406f7e08759e5eb | |
parent | improve no PR message (diff) |
add logging generated url
-rw-r--r-- | bot/exts/halloween/hacktoberstats.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/exts/halloween/hacktoberstats.py b/bot/exts/halloween/hacktoberstats.py index 2f10a8e8..53f6d9dc 100644 --- a/bot/exts/halloween/hacktoberstats.py +++ b/bot/exts/halloween/hacktoberstats.py @@ -251,6 +251,7 @@ class HacktoberStats(commands.Cog): f"+created:{date_range}" f"&per_page={per_page}" ) + logging.info(f"Query URL generated: {query_url}") async with aiohttp.ClientSession() as session: async with session.get(query_url, headers=REQUEST_HEADERS) as resp: |