summaryrefslogtreecommitdiffstats
path: root/libhb/internal.h
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2008-10-09 15:11:27 +0000
committerjbrjake <[email protected]>2008-10-09 15:11:27 +0000
commitffe47d6ff6ac8b5241081d382302694bfe297fee (patch)
treef6c6f41cbc896ba9ddc7e9bafa99cfd638eb1529 /libhb/internal.h
parent45307049935e7f3a991957d35f699bb00a288a5b (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/internal.h')
-rw-r--r--libhb/internal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/internal.h b/libhb/internal.h
index 5d7f654bb..a8f5edfd9 100644
--- a/libhb/internal.h
+++ b/libhb/internal.h
@@ -11,9 +11,9 @@ void hb_log( char * log, ... );
extern int global_verbosity_level; // Global variable for hb_deep_log
typedef enum hb_debug_level_s
{
- HB_SUPPORT_LOG = 1, // Logging helpful in tech support
- HB_MEMORY_LOG = 2, // logging about memory usage
- HB_GRANULAR_LOG = 3 // logging on sample-by-sample
+ HB_SUPPORT_LOG = 1, // helpful in tech support
+ HB_HOUSEKEEPING_LOG = 2, // stuff we hate scrolling through
+ HB_GRANULAR_LOG = 3 // sample-by-sample
} hb_debug_level_t;
void hb_deep_log( hb_debug_level_t level, char * log, ... );
void hb_error( char * fmt, ...);