Skip to content
Snippets Groups Projects
Commit d236fea2 authored by George Kiagiadakis's avatar George Kiagiadakis
Browse files

m-mixer: downgrade warnings about no backend to debug messages

This is a situation that always happens on startup, so let's not
spam with warnings
parent ee00a246
No related branches found
No related tags found
No related merge requests found
......@@ -199,7 +199,7 @@ mixer_endpoint_get_control_value (WpEndpoint * ep, guint32 control_id)
/* if there is no backend, return the default value */
if (!backend) {
g_warning ("Mixer:%p Cannot get control value - no backend", self);
g_debug ("Mixer:%p Cannot get control value - no backend", self);
switch (control_id) {
case CONTROL_VOLUME:
......@@ -237,7 +237,7 @@ mixer_endpoint_set_control_value (WpEndpoint * ep, guint32 control_id,
backend = g_weak_ref_get (&group->backend);
if (!backend) {
g_warning ("Mixer:%p Cannot set control value - no backend", self);
g_debug ("Mixer:%p Cannot set control value - no backend", self);
return FALSE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment