diff options
Diffstat (limited to 'libhb/scan.c')
-rw-r--r-- | libhb/scan.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libhb/scan.c b/libhb/scan.c index ce7752326..ead4f2511 100644 --- a/libhb/scan.c +++ b/libhb/scan.c @@ -512,7 +512,14 @@ static int DecodePreviews( hb_scan_t * data, hb_title_t * title ) list_es = hb_list_init(); - hb_log( "scan: decoding previews for title %d", title->index ); + if( data->batch ) + { + hb_log( "scan: decoding previews for title %d (%s)", title->index, title->path ); + } + else + { + hb_log( "scan: decoding previews for title %d", title->index ); + } if (data->bd) { |