diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-05-13 14:31:20 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-05-13 14:31:20 +0000 |
commit | bb4c595810ccd9b849be2d20f5c16d6076d083bb (patch) | |
tree | a0443629b2d996f0597f75e8bafee3f8fd13505e /src/httrack-library.h | |
parent | 84c47b0ce10547fdf223f721ef88f7af09af5401 (diff) |
Introducing the hts_log_print() logging function
* cleaned up logging
Diffstat (limited to 'src/httrack-library.h')
-rw-r--r-- | src/httrack-library.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/httrack-library.h b/src/httrack-library.h index 7654e02..031c7f2 100644 --- a/src/httrack-library.h +++ b/src/httrack-library.h @@ -48,6 +48,18 @@ typedef struct httrackp httrackp; #define HTS_DEF_FWSTRUCT_strc_int2bytes2 typedef struct strc_int2bytes2 strc_int2bytes2; #endif +#ifndef HTS_DEF_DEFSTRUCT_hts_log_type +#define HTS_DEF_DEFSTRUCT_hts_log_type +typedef enum hts_log_type { + LOG_DEBUG, + LOG_INFO, + LOG_NOTICE, + LOG_WARNING, + LOG_ERROR, + LOG_PANIC, + LOG_ERRNO = 1 << 8 +} hts_log_type; +#endif /* Helpers for plugging callbacks requires: htsdefines.h */ @@ -96,6 +108,7 @@ HTSEXT_API int plug_wrapper(httrackp *opt, const char *moduleName, const char* a /* Logging */ HTSEXT_API int hts_log(httrackp *opt, const char* prefix, const char *msg); +HTSEXT_API void hts_log_print(httrackp *opt, int type, const char *format, ...); /* Infos */ HTSEXT_API const char* hts_get_version_info(httrackp *opt); |