diff options
| author | Rapptz <[email protected]> | 2017-10-01 13:43:20 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-10-01 13:43:20 -0400 |
| commit | 065f408a1046c4a150dd9d642c13baded002f788 (patch) | |
| tree | 554011daaa10ddfebd037a72d7fd1ae3f04358e2 /discord/http.py | |
| parent | Allow creating a channel with a category. (diff) | |
| download | discord.py-065f408a1046c4a150dd9d642c13baded002f788.tar.xz discord.py-065f408a1046c4a150dd9d642c13baded002f788.zip | |
Move pre-emptive message to DEBUG log level.
Diffstat (limited to 'discord/http.py')
| -rw-r--r-- | discord/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/http.py b/discord/http.py index bcdfcfe6..fa6678ee 100644 --- a/discord/http.py +++ b/discord/http.py @@ -164,7 +164,7 @@ class HTTPClient: else: delta = header_bypass_delay - log.info('A rate limit bucket has been exhausted (bucket: %s, retry: %s).', bucket, delta) + log.debug('A rate limit bucket has been exhausted (bucket: %s, retry: %s).', bucket, delta) maybe_lock.defer() self.loop.call_later(delta, lock.release) |