alsa: Drop verbosity on UCM message

We don't need to log an error-level message for missing UCM config.
This commit is contained in:
Arun Raghavan 2012-11-05 17:41:19 +05:30
parent 7ce7464c16
commit 7d97fe56c7

View file

@ -535,7 +535,7 @@ int pa_alsa_ucm_query_profiles(pa_alsa_ucm_config *ucm, int card_index)
err = snd_use_case_mgr_open(&ucm->ucm_mgr, card_name); err = snd_use_case_mgr_open(&ucm->ucm_mgr, card_name);
if (err < 0) { if (err < 0) {
pa_log("UCM not available for card %s", card_name); pa_log_info("UCM not available for card %s", card_name);
goto ucm_mgr_fail; goto ucm_mgr_fail;
} }