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/fifo.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/fifo.c')
-rw-r--r-- | libhb/fifo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/fifo.c b/libhb/fifo.c index ea2a29287..9441f7172 100644 --- a/libhb/fifo.c +++ b/libhb/fifo.c @@ -85,12 +85,12 @@ void hb_buffer_pool_free( void ) } if ( count ) { - hb_log("Freed %d buffers of size %d", count, + hb_deep_log( 2, "Freed %d buffers of size %d", count, buffers.pool[i]->buffer_size); } } - hb_log("Allocated %lld bytes of buffers on this pass and Freed %lld bytes, " + hb_deep_log( 2, "Allocated %lld bytes of buffers on this pass and Freed %lld bytes, " "%lld bytes leaked", buffers.allocated, freed, buffers.allocated - freed); buffers.allocated = 0; hb_unlock(buffers.lock); @@ -376,7 +376,7 @@ void hb_fifo_close( hb_fifo_t ** _f ) hb_fifo_t * f = *_f; hb_buffer_t * b; - hb_log( "fifo_close: trashing %d buffer(s)", hb_fifo_size( f ) ); + hb_deep_log( 2, "fifo_close: trashing %d buffer(s)", hb_fifo_size( f ) ); while( ( b = hb_fifo_get( f ) ) ) { hb_buffer_close( &b ); |