lokinet/include/llarp/logger.h

24 lines
231 B
C
Raw Normal View History

2018-06-26 10:59:31 +00:00
#ifndef LLARP_LOGGER_H
#define LLARP_LOGGER_H
#ifdef __cplusplus
extern "C" {
#endif
enum LogLevel
{
eLogDebug,
eLogInfo,
eLogWarn,
eLogError
};
void
cSetLogLevel(enum LogLevel lvl);
#ifdef __cplusplus
}
#endif
#endif