diff --git a/include/llarp/logger.h b/include/llarp/logger.h new file mode 100644 index 000000000..92091fe0a --- /dev/null +++ b/include/llarp/logger.h @@ -0,0 +1,23 @@ +#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