Commit c9c8a74b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Stop spamming the debug logs

parent f88693fe
...@@ -1406,8 +1406,9 @@ static int InheritValue( vlc_object_t *p_this, const char *psz_name, ...@@ -1406,8 +1406,9 @@ static int InheritValue( vlc_object_t *p_this, const char *psz_name,
/* Duplicate value if needed */ /* Duplicate value if needed */
p_var->ops->pf_dup( p_val ); p_var->ops->pf_dup( p_val );
msg_Dbg( p_this, "Inherited value for var %s from object %s", psz_name ? : "(null)", /*msg_Dbg( p_this, "Inherited value for var %s from object %s",
p_this->psz_object_name ? : "(Unknown)" ) ; psz_name ? : "(null)",
p_this->psz_object_name ? : "(Unknown)" );*/
return VLC_SUCCESS; return VLC_SUCCESS;
} }
else if ( p_this->p_parent ) /* We are still not there */ else if ( p_this->p_parent ) /* We are still not there */
...@@ -1462,11 +1463,12 @@ static int InheritValue( vlc_object_t *p_this, const char *psz_name, ...@@ -1462,11 +1463,12 @@ static int InheritValue( vlc_object_t *p_this, const char *psz_name,
break; break;
} }
default: default:
msg_Warn( p_this, "Could not inherit value for var %s from config. Invalid Type", psz_name ) ; msg_Warn( p_this, "Could not inherit value for var %s "
"from config. Invalid Type", psz_name );
return VLC_ENOOBJ; return VLC_ENOOBJ;
break; break;
} }
msg_Dbg( p_this, "Inherited value for var %s from config", psz_name ) ; /*msg_Dbg( p_this, "Inherited value for var %s from config", psz_name );*/
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment