diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-05-13 15:07:51 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-05-13 15:07:51 +0000 |
commit | eaef7eb1f7ae092d73eeffa245ab418d70748fdf (patch) | |
tree | b73ed1f1ad2672ec1ca08dd6fd1b9a3cf247d897 /src/htscoremain.c | |
parent | 695825fa84e47d141a74c2f91a5ca7a4b4f6655a (diff) |
Fixed LOG_DEBUG
Diffstat (limited to 'src/htscoremain.c')
-rw-r--r-- | src/htscoremain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htscoremain.c b/src/htscoremain.c index 53baa56..3059ea3 100644 --- a/src/htscoremain.c +++ b/src/htscoremain.c @@ -2201,7 +2201,7 @@ HTSEXT_API int hts_main2(int argc, char **argv, httrackp *opt) { } /* Info for wrappers */ - hts_log_print(opt, LOG_INFO, "engine: init"); + hts_log_print(opt, LOG_DEBUG, "engine: init"); /* Init external */ RUN_CALLBACK_NOARG(opt, init); @@ -2274,7 +2274,7 @@ HTSEXT_API int hts_main2(int argc, char **argv, httrackp *opt) { } /* Info for wrappers */ - hts_log_print(opt, LOG_INFO, "engine: free"); + hts_log_print(opt, LOG_DEBUG, "engine: free"); /* UnInit */ RUN_CALLBACK_NOARG(opt, uninit); |