Skip to content

Commit af8bee2

Browse files
sezeroslouken
authored andcommitted
alsa: change an SDL_LogError into SDL_LogDebug.
it is informational only and seeing ERROR on the terminal was confusing
1 parent bbc674b commit af8bee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/audio/alsa/SDL_alsa_audio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ static bool ALSA_OpenDevice(SDL_AudioDevice *device)
11571157
#if SDL_ALSA_DEBUG
11581158
snd_pcm_uframes_t bufsize;
11591159
ALSA_snd_pcm_hw_params_get_buffer_size(cfg_ctx.hwparams, &bufsize);
1160-
SDL_LogError(SDL_LOG_CATEGORY_AUDIO,
1160+
SDL_LogDebug(SDL_LOG_CATEGORY_AUDIO,
11611161
"ALSA: period size = %ld, periods = %u, buffer size = %lu",
11621162
cfg_ctx.persize, cfg_ctx.periods, bufsize);
11631163
#endif

0 commit comments

Comments
 (0)