Skip to content

Commit

Permalink
Add path to log when decoding previews in batch scan
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jstebbins committed Dec 29, 2011
1 parent 5b745b8 commit 63afef0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion libhb/scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 63afef0

Please sign in to comment.