Commit 0af6ed59 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

CDDA: more debug on CDDB failures

parent 6fa0c12c
...@@ -414,6 +414,8 @@ static int GetTracks( access_t *p_access, input_item_t *p_current ) ...@@ -414,6 +414,8 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
psz_artist = psz_track_artist; psz_artist = psz_track_artist;
} }
} }
else
msg_Dbg( p_access, "GetCDDBInfo failed" );
#endif #endif
/* CD-Text */ /* CD-Text */
...@@ -586,7 +588,10 @@ static int GetTracks( access_t *p_access, input_item_t *p_current ) ...@@ -586,7 +588,10 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
static cddb_disc_t *GetCDDBInfo( access_t *p_access, int i_titles, int *p_sectors ) static cddb_disc_t *GetCDDBInfo( access_t *p_access, int i_titles, int *p_sectors )
{ {
if( var_InheritInteger( p_access, "album-art" ) == ALBUM_ART_WHEN_ASKED ) if( var_InheritInteger( p_access, "album-art" ) == ALBUM_ART_WHEN_ASKED )
{
msg_Dbg( p_access, "Album art policy set to manual; no automatic fetching" );
return NULL; return NULL;
}
/* */ /* */
cddb_conn_t *p_cddb = cddb_new(); cddb_conn_t *p_cddb = cddb_new();
......
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