aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/voice_client.py2
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