[vlc-devel] commit: Stop spamming the debug logs ( Rémi Denis-Courmont )
git version control
git at videolan.org
Wed Feb 11 22:12:37 CET 2009
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Wed Feb 11 21:58:32 2009 +0200| [c9c8a74b78f9187a2343d778406a8823219db710] | committer: Rémi Denis-Courmont
Stop spamming the debug logs
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c9c8a74b78f9187a2343d778406a8823219db710
---
src/misc/variables.c | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/misc/variables.c b/src/misc/variables.c
index 26d79d0..be81856 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;
}
More information about the vlc-devel
mailing list