From d03d97a163cf163aac4b17665a72e1d935d39c9a Mon Sep 17 00:00:00 2001 From: Xavier Roche Date: Tue, 9 Jul 2013 18:19:32 +0000 Subject: LOG_TRACE --- src/htslib.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/htslib.c') diff --git a/src/htslib.c b/src/htslib.c index 64c15b3..629f6c0 100644 --- a/src/htslib.c +++ b/src/htslib.c @@ -5262,6 +5262,13 @@ HTSEXT_API void hts_log_print(httrackp * opt, int type, const char *format, ...) const char *s_type = "unknown"; switch (type & 0xff) { + case LOG_TRACE: + // check verbosity + if (opt->debug < 3) { + return; + } + s_type = "trace"; + break; case LOG_DEBUG: // check verbosity if (opt->debug < 2) { -- cgit v1.2.3