From 2be5f726d4cd7b0cd136c904cb4630ae8c30e48a Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Sat, 24 Jun 2023 01:35:03 -0400
Subject: [PATCH] audio: Removed debug logging.
---
src/audio/SDL_audio.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c
index 4daa15c3b706..9dfae71f57c1 100644
--- a/src/audio/SDL_audio.c
+++ b/src/audio/SDL_audio.c
@@ -307,7 +307,6 @@ static void DisconnectLogicalAudioDevice(SDL_LogicalAudioDevice *logdev)
if (SDL_EventEnabled(SDL_EVENT_AUDIO_DEVICE_REMOVED)) {
SDL_Event event;
SDL_zero(event);
-SDL_Log("Sending event about loss of logical device #%u", (unsigned int) logdev->instance_id);
event.type = SDL_EVENT_AUDIO_DEVICE_REMOVED;
event.common.timestamp = 0;
event.adevice.which = logdev->instance_id;