diff options
| author | Rapptz <[email protected]> | 2016-01-06 12:19:59 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-01-06 12:19:59 -0500 |
| commit | c1347dfcf0f722f1209f0427235bea44b5de94ee (patch) | |
| tree | 678a6ae951b6d90bb4b34f0837ce693366e711a7 | |
| parent | Add Member.permissions_in. (diff) | |
| download | discord.py-c1347dfcf0f722f1209f0427235bea44b5de94ee.tar.xz discord.py-c1347dfcf0f722f1209f0427235bea44b5de94ee.zip | |
Remove excessive logging when using voice.
| -rw-r--r-- | discord/voice_client.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/discord/voice_client.py b/discord/voice_client.py index daa65597..7384db94 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -80,7 +80,6 @@ class StreamPlayer(threading.Thread): self.loops += 1 data = self.buff.read(self.frame_size) - log.info('received {} bytes (out of {})'.format(len(data), self.frame_size)) if len(data) != self.frame_size: self.stop() break @@ -323,7 +322,6 @@ class VoiceClient: # audio related def _get_voice_packet(self, data): - log.info('creating a voice packet') buff = bytearray(len(data) + 12) buff[0] = 0x80 buff[1] = 0x78 |