0 /* See LICENSE file for copyright and license details. */

1 #ifndef _LOG_H_

2 #define _LOG_H_

3

4 void log_info(const char *format, ...);

5 void log_warning(const char *format, ...);

6 void log_error(const char *format, ...);

7 void log_debug(const char *format, ...);

8

9 void log_info_r(struct client* c, const char *format, ...);

10 void log_warning_r(struct client* c, const char *format, ...);

11 void log_error_r(struct client* c, const char *format, ...);

12 void log_debug_r(struct client* c, const char *format, ...);

13

14 #endif

15