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/httrack-library.h | |
parent | c11fe60beecd27709c31a0facecfaad5bbdb717b (diff) |
Fixed logging level (especially for robots.txt rules)
(manual backport of r867)
Diffstat (limited to 'src/httrack-library.h')
-rw-r--r-- | src/httrack-library.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/httrack-library.h b/src/httrack-library.h index a3e7138..47b44be 100644 --- a/src/httrack-library.h +++ b/src/httrack-library.h @@ -47,12 +47,12 @@ typedef struct strc_int2bytes2 strc_int2bytes2; #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 |