From c9c8a74b78f9187a2343d778406a8823219db710 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Wed, 11 Feb 2009 21:58:32 +0200 Subject: [PATCH] Stop spamming the debug logs --- src/misc/variables.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/misc/variables.c b/src/misc/variables.c index 26d79d0ec9..be8185690d 100644 --- a/src/misc/variables.c +++ b/src/misc/variables.c @@ -1406,8 +1406,9 @@ static int InheritValue( vlc_object_t *p_this, const char *psz_name, /* Duplicate value if needed */ p_var->ops->pf_dup( p_val ); - msg_Dbg( p_this, "Inherited value for var %s from object %s", psz_name ? : "(null)", - p_this->psz_object_name ? : "(Unknown)" ) ; + /*msg_Dbg( p_this, "Inherited value for var %s from object %s", + psz_name ? : "(null)", + p_this->psz_object_name ? : "(Unknown)" );*/ return VLC_SUCCESS; } 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, break; } 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; 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; } -- 2.39.5