diff options
author | jstebbins <[email protected]> | 2011-12-29 23:18:23 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-12-29 23:18:23 +0000 |
commit | 63afef0c041be7e6ae30150350d8b9753fc97917 (patch) | |
tree | 7817a68a2db2b2fd8f69d7ce3e16defd31753572 /libhb | |
parent | 5b745b8f17f8acc6d3799eb3cb86e09c7ca99017 (diff) |
Add path to log when decoding previews in batch scan
The title number isn't very helpful in batch scan mode.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4391 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-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) { |