mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-15 18:09:15 +08:00
19 lines
660 B
C
19 lines
660 B
C
|
#pragma once
|
||
|
|
||
|
#include "arch.h"
|
||
|
#include "config.h"
|
||
|
|
||
|
#if MG_ENABLE_LOG
|
||
|
#define LOG(level, args) \
|
||
|
do { \
|
||
|
if (mg_log_prefix((level), __FILE__, __LINE__, __func__)) mg_log args; \
|
||
|
} while (0)
|
||
|
enum { LL_NONE, LL_ERROR, LL_INFO, LL_DEBUG, LL_VERBOSE_DEBUG };
|
||
|
bool mg_log_prefix(int ll, const char *file, int line, const char *fname);
|
||
|
void mg_log(const char *fmt, ...) PRINTF_LIKE(1, 2);
|
||
|
void mg_log_set(const char *spec);
|
||
|
void mg_log_set_callback(void (*fn)(const void *, int, void *), void *param);
|
||
|
#else
|
||
|
#define LOG(level, args)
|
||
|
#endif
|