#ifndef RPROXY_LOGGING_H
|
|
#define RPROXY_LOGGING_H
|
|
|
|
void log_error(const char *format, ...);
|
|
void log_info(const char *format, ...);
|
|
void log_debug(const char *format, ...);
|
|
void logging_set_debug(int enabled);
|
|
int logging_get_debug(void);
|
|
int logging_set_file(const char *path);
|
|
void logging_cleanup(void);
|
|
|
|
#endif
|