Commit 79f590d4 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

directory: Remove unuseful debug message.

parent 878902ea
...@@ -524,7 +524,6 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name, ...@@ -524,7 +524,6 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
p_input = input_ItemNewWithType( p_playlist, p_input = input_ItemNewWithType( p_playlist,
psz_uri, entry, 0, NULL, psz_uri, entry, 0, NULL,
-1, ITEM_TYPE_FILE ); -1, ITEM_TYPE_FILE );
msg_Dbg( p_playlist, "dir: created %s", p_input->psz_name );
if (p_input != NULL) if (p_input != NULL)
{ {
if( p_current_input ) if( p_current_input )
...@@ -535,7 +534,6 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name, ...@@ -535,7 +534,6 @@ static int ReadDir( playlist_t *p_playlist, const char *psz_name,
PLAYLIST_NO_REBUILD, PLAYLIST_NO_REBUILD,
PLAYLIST_END, NULL, NULL, PLAYLIST_END, NULL, NULL,
false ); false );
msg_Dbg( p_playlist, "dir: Deleting %s", p_input->psz_name );
vlc_gc_decref( p_input ); vlc_gc_decref( p_input );
if( i_ret != VLC_SUCCESS ) if( i_ret != VLC_SUCCESS )
return VLC_EGENERIC; return VLC_EGENERIC;
......
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