Commit fc3d65f7 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Src: more comprehensible debug messages

parent 913ab9c0
......@@ -809,7 +809,9 @@ static void MainLoop( input_thread_t *p_input, bool b_interactive )
break;
}
#ifndef NDEBUG
msg_Dbg( p_input, "control type=%d", i_type );
#endif
if( Control( p_input, i_type, val ) )
{
......
......@@ -384,7 +384,7 @@ stream_t *stream_AccessNew( access_t *p_access, char **ppsz_list )
if( p_sys->method == STREAM_METHOD_BLOCK )
{
msg_Dbg( s, "Using AStream*Block" );
msg_Dbg( s, "Using block method for AStream*" );
s->pf_read = AStreamReadBlock;
s->pf_peek = AStreamPeekBlock;
......@@ -411,7 +411,7 @@ stream_t *stream_AccessNew( access_t *p_access, char **ppsz_list )
assert( p_sys->method == STREAM_METHOD_STREAM );
msg_Dbg( s, "Using AStream*Stream" );
msg_Dbg( s, "Using stream method for AStream*" );
s->pf_read = AStreamReadStream;
s->pf_peek = AStreamPeekStream;
......
......@@ -72,7 +72,7 @@ void playlist_Deactivate( playlist_t *p_playlist )
/* */
playlist_private_t *p_sys = pl_priv(p_playlist);
msg_Dbg( p_playlist, "Deactivate" );
msg_Dbg( p_playlist, "deactivating the playlist" );
PL_LOCK;
vlc_object_kill( p_playlist );
......@@ -103,7 +103,7 @@ void playlist_Deactivate( playlist_t *p_playlist )
PL_UNLOCK;
msg_Dbg( p_playlist, "Deactivated" );
msg_Dbg( p_playlist, "playlist correctly deactivated" );
}
/* */
......
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