diff options
author | jstebbins <[email protected]> | 2015-06-09 15:17:29 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-06-09 15:17:29 +0000 |
commit | 8caee85622a20896dc34943a4bd184151fd58c2d (patch) | |
tree | 93e3ad8bdc2b7bc613c7f2aab0163f157e77c374 /libhb/work.c | |
parent | d5e99f4c6a77a064ca2a461a5d66957febb9c5c1 (diff) |
libhb: log json job string
For now, the log leve of this is 1. When we feel that the json job code
has stabilized, we may want to change the log level to 2 or 3.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7281 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libhb/work.c b/libhb/work.c index 6d891b426..2ac218d27 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -101,6 +101,8 @@ static void work_func( void * _work ) // because the default values for the job come from the title. if (job->json != NULL) { + hb_deep_log(1, "json job:\n%s", job->json); + // Perform title scan for json job hb_json_job_scan(job->h, job->json); |