Browse Source

Properly format voice logs

pull/10109/head
dolfies 2 years ago
parent
commit
6227c3810f
  1. 4
      discord/voice_client.py

4
discord/voice_client.py

@ -361,11 +361,11 @@ class VoiceClient(VoiceProtocol):
self._voice_state_complete.clear()
self._voice_server_complete.clear()
self._handshaking = True
_log.info('Starting voice handshake... (connection attempt %d)', self._connections + 1)
_log.info('Starting voice handshake (connection attempt %d)...', self._connections + 1)
self._connections += 1
def finish_handshake(self) -> None:
_log.info('Voice handshake complete. Endpoint found %s', self.endpoint)
_log.info('Voice handshake complete. Endpoint found: %s.', self.endpoint)
self._handshaking = False
self._voice_server_complete.clear()
self._voice_state_complete.clear()

Loading…
Cancel
Save