#ifndef _NNTP_LOG_H_ #define _NNTP_LOG_H_ /* Copyright (c) 1996, Ruslan R. Laishev (@RRL) */ #include "nntp.h" #define LOGI 0 #define LOGF 1 #define LOGS 2 #define LOGE 3 #define LOGW 4 #define LOGD 5 extern char *lvl_msg[]; char *nntp_log_time (char *, int); int NNTP_LOG_ERR (char *, long); void NNTP_LOG (int ,const char *, ...); void NNTP_LOGT (WorkerContext *,int ,const char *, ...); #endif /* _NNTP_LOG_H_ */