summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorsr55 <[email protected]>2019-09-01 21:14:21 +0100
committerScott <[email protected]>2019-09-08 12:16:46 +0100
commit0fe6a195ba1f8ab30e8d4db15f13baa5854517d9 (patch)
tree5d6263659225bfc6a372eedd14e55bac7a9e3dba /libhb
parent0c196175bd5563101efa8d604b3afe8bdd080ff1 (diff)
Improve detail in logging of jobs. #2285
Diffstat (limited to 'libhb')
-rw-r--r--libhb/work.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/libhb/work.c b/libhb/work.c
index 14960a165..d904cb482 100644
--- a/libhb/work.c
+++ b/libhb/work.c
@@ -1448,7 +1448,18 @@ static void do_job(hb_job_t *job)
w = hb_get_work(job->h, WORK_READER);
hb_list_add(job->list_work, w);
- hb_log( "starting job" );
+ if (job->indepth_scan)
+ {
+ hb_log( "Starting Job: Subtitle Scan" );
+ }
+ else if (job->pass_id == HB_PASS_ENCODE_1ST)
+ {
+ hb_log( "Starting Job: Encode First Pass" );
+ }
+ else
+ {
+ hb_log( "Starting Job: Encode Second Pass" );
+ }
// This must be performed before initializing filters because
// it can add the subtitle render filter.