From 6227c3810f19201ceda99642e1c41c09c30fe471 Mon Sep 17 00:00:00 2001 From: dolfies Date: Sat, 1 Apr 2023 22:01:06 -0400 Subject: [PATCH] Properly format voice logs --- discord/voice_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/voice_client.py b/discord/voice_client.py index 3a924995d..1aa6c1e51 100644 --- a/discord/voice_client.py +++ b/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()