From af8bee2dd1d4d13110aa2020dc5d2cc5275ed7d6 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Sat, 21 Jun 2025 03:10:50 +0300 Subject: [PATCH] alsa: change an SDL_LogError into SDL_LogDebug. it is informational only and seeing ERROR on the terminal was confusing --- src/audio/alsa/SDL_alsa_audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/alsa/SDL_alsa_audio.c b/src/audio/alsa/SDL_alsa_audio.c index 4ba156e306..f93433e641 100644 --- a/src/audio/alsa/SDL_alsa_audio.c +++ b/src/audio/alsa/SDL_alsa_audio.c @@ -1157,7 +1157,7 @@ static bool ALSA_OpenDevice(SDL_AudioDevice *device) #if SDL_ALSA_DEBUG snd_pcm_uframes_t bufsize; ALSA_snd_pcm_hw_params_get_buffer_size(cfg_ctx.hwparams, &bufsize); - SDL_LogError(SDL_LOG_CATEGORY_AUDIO, + SDL_LogDebug(SDL_LOG_CATEGORY_AUDIO, "ALSA: period size = %ld, periods = %u, buffer size = %lu", cfg_ctx.persize, cfg_ctx.periods, bufsize); #endif