diff options
author | jbrjake <[email protected]> | 2008-10-09 15:11:27 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-10-09 15:11:27 +0000 |
commit | ffe47d6ff6ac8b5241081d382302694bfe297fee (patch) | |
tree | f6c6f41cbc896ba9ddc7e9bafa99cfd638eb1529 /libhb/encx264.c | |
parent | 45307049935e7f3a991957d35f699bb00a288a5b (diff) |
After discussion with eddyg, extending verbose logging level 2 from just memory-related logging to general-purpose housekeeping--stuff that isn't necessary when scrolling through activity logs users submit with bug reports and support queries. This includes things like thread start/exit messages and preview frames.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1820 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/encx264.c')
-rw-r--r-- | libhb/encx264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/encx264.c b/libhb/encx264.c index 23afa4243..4a831ba38 100644 --- a/libhb/encx264.c +++ b/libhb/encx264.c @@ -283,7 +283,7 @@ int encx264Init( hb_work_object_t * w, hb_job_t * job ) } } - hb_log( "encx264: opening libx264 (pass %d)", job->pass ); + hb_deep_log( 2, "encx264: opening libx264 (pass %d)", job->pass ); pv->x264 = x264_encoder_open( ¶m ); x264_encoder_headers( pv->x264, &nal, &nal_count ); |