diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-09-15 08:53:55 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-09-15 08:53:55 +0000 |
commit | df46fbe8d506057b23c6d0fd322cfa251ae372ec (patch) | |
tree | 87e842a5a84780834b4d33f39a20d913a962f17f /src/htsopt.h | |
parent | c11fe60beecd27709c31a0facecfaad5bbdb717b (diff) |
Fixed logging level (especially for robots.txt rules)
(manual backport of r867)
Diffstat (limited to 'src/htsopt.h')
-rw-r--r-- | src/htsopt.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/htsopt.h b/src/htsopt.h index 86da4cf..060f00d 100644 --- a/src/htsopt.h +++ b/src/htsopt.h @@ -172,12 +172,12 @@ typedef struct lien_url lien_url; #define HTS_DEF_DEFSTRUCT_hts_log_type typedef enum hts_log_type { LOG_TRACE, - LOG_DEBUG, - LOG_INFO, - LOG_NOTICE, - LOG_WARNING, - LOG_ERROR, LOG_PANIC, + LOG_ERROR, + LOG_WARNING, + LOG_NOTICE, + LOG_INFO, + LOG_DEBUG, LOG_ERRNO = 1 << 8 } hts_log_type; #endif |