]> git.sesse.net Git - vlc/commitdiff
Qt: Warn=>Dbg
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 31 Dec 2008 12:29:36 +0000 (13:29 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 31 Dec 2008 12:43:09 +0000 (13:43 +0100)
modules/gui/qt4/input_manager.cpp

index 4ff6c536d6c4b7fe0493162d86d41d15a0808473..1bcb084f2290ef14889891a1362602895dcbf92e 100644 (file)
@@ -78,7 +78,7 @@ void InputManager::setInput( input_thread_t *_p_input )
     p_input = _p_input;
     if( p_input && !( p_input->b_dead || !vlc_object_alive (p_input) ) )
     {
-        msg_Warn( p_intf, "IM: Setting an input" );
+        msg_Dbg( p_intf, "IM: Setting an input" );
         vlc_object_hold( p_input );
         emit statusChanged( PLAYING_S );
         UpdateName();
@@ -103,7 +103,7 @@ void InputManager::setInput( input_thread_t *_p_input )
 void InputManager::delInput()
 {
     if( !p_input ) return;
-    msg_Warn( p_intf, "IM: Deleting the input" );
+    msg_Dbg( p_intf, "IM: Deleting the input" );
 
     delCallbacks();
     i_old_playing_status = END_S;