13 lines
315 B
C
Raw Normal View History

2025-11-29 01:49:14 +01:00
#ifndef RPROXY_LOGGING_H
#define RPROXY_LOGGING_H
2025-11-29 04:58:34 +01:00
void log_error(const char *format, ...);
2025-11-29 01:49:14 +01:00
void log_info(const char *format, ...);
void log_debug(const char *format, ...);
void logging_set_debug(int enabled);
int logging_get_debug(void);
2025-11-29 04:58:34 +01:00
int logging_set_file(const char *path);
void logging_cleanup(void);
2025-11-29 01:49:14 +01:00
#endif