Commit 913ab9c0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Improved debug messages

parent 3a45efe2
...@@ -667,7 +667,7 @@ static void AStreamPrebufferBlock( stream_t *s ) ...@@ -667,7 +667,7 @@ static void AStreamPrebufferBlock( stream_t *s )
int64_t i_first = 0; int64_t i_first = 0;
int64_t i_start; int64_t i_start;
msg_Dbg( s, "pre buffering" ); msg_Dbg( s, "starting pre-buffering" );
i_start = mdate(); i_start = mdate();
for( ;; ) for( ;; )
{ {
...@@ -1420,7 +1420,7 @@ static void AStreamPrebufferStream( stream_t *s ) ...@@ -1420,7 +1420,7 @@ static void AStreamPrebufferStream( stream_t *s )
int64_t i_first = 0; int64_t i_first = 0;
int64_t i_start; int64_t i_start;
msg_Dbg( s, "pre buffering" ); msg_Dbg( s, "starting pre-buffering" );
i_start = mdate(); i_start = mdate();
for( ;; ) for( ;; )
{ {
......
...@@ -64,7 +64,7 @@ void playlist_Activate( playlist_t *p_playlist ) ...@@ -64,7 +64,7 @@ void playlist_Activate( playlist_t *p_playlist )
{ {
msg_Err( p_playlist, "cannot spawn playlist thread" ); msg_Err( p_playlist, "cannot spawn playlist thread" );
} }
msg_Dbg( p_playlist, "Activated" ); msg_Dbg( p_playlist, "playlist threads correctly activated" );
} }
void playlist_Deactivate( playlist_t *p_playlist ) void playlist_Deactivate( playlist_t *p_playlist )
...@@ -312,7 +312,7 @@ static playlist_item_t *NextItem( playlist_t *p_playlist ) ...@@ -312,7 +312,7 @@ static playlist_item_t *NextItem( playlist_t *p_playlist )
{ {
p_new = p_sys->request.p_item; p_new = p_sys->request.p_item;
int i_skip = p_sys->request.i_skip; int i_skip = p_sys->request.i_skip;
PL_DEBUG( "processing request item %s node %s skip %i", PL_DEBUG( "processing request item: %s, node: %s, skip: %i",
PLI_NAME( p_sys->request.p_item ), PLI_NAME( p_sys->request.p_item ),
PLI_NAME( p_sys->request.p_node ), i_skip ); PLI_NAME( p_sys->request.p_node ), i_skip );
...@@ -543,7 +543,7 @@ static void LoopRequest( playlist_t *p_playlist ) ...@@ -543,7 +543,7 @@ static void LoopRequest( playlist_t *p_playlist )
playlist_item_t *p_item = NextItem( p_playlist ); playlist_item_t *p_item = NextItem( p_playlist );
if( p_item ) if( p_item )
{ {
msg_Dbg( p_playlist, "starting new item" ); msg_Dbg( p_playlist, "starting playback of the new playlist item" );
PlayItem( p_playlist, p_item ); PlayItem( p_playlist, p_item );
return; return;
} }
......
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