]> git.sesse.net Git - vlc/commitdiff
Stop spamming the debug logs
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Wed, 11 Feb 2009 19:58:32 +0000 (21:58 +0200)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Wed, 11 Feb 2009 21:11:44 +0000 (23:11 +0200)
src/misc/variables.c

index 26d79d0ec92fc23dfd311f0172412ae0362c6a77..be8185690de41aa6dcc572fa10227d7e4ab863e8 100644 (file)
@@ -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;
 }