diff options
author | Vikas Gorur <vikas@gluster.com> | 2009-04-21 02:34:01 -0700 |
---|---|---|
committer | Anand V. Avati <avati@amp.gluster.com> | 2009-04-24 20:57:41 +0530 |
commit | b52a5a408b82496a295c1065f2286c6755a04689 (patch) | |
tree | ab8ab70bc3553b7418669697ad634895cb5560a3 /libglusterfs/src/logging.h | |
parent | 174872b3644d36f6d0f8a34d9c06092abc126e4f (diff) |
Introduce new log level GF_LOG_TRACE.
TRACE is the most verbose log level, meant to have a
full trace of operation.
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'libglusterfs/src/logging.h')
-rw-r--r-- | libglusterfs/src/logging.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libglusterfs/src/logging.h b/libglusterfs/src/logging.h index ecd70d09a2c..d2347c02ba8 100644 --- a/libglusterfs/src/logging.h +++ b/libglusterfs/src/logging.h @@ -74,7 +74,8 @@ typedef enum { GF_LOG_WARNING, /* info about normal operation */ GF_LOG_INFO, /* Normal information */ #define GF_LOG_NORMAL GF_LOG_INFO - GF_LOG_DEBUG, /* all other junk */ + GF_LOG_DEBUG, /* internal errors */ + GF_LOG_TRACE, /* full trace of operation */ } gf_loglevel_t; #define GF_LOG_MAX GF_LOG_DEBUG |