mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
24 lines
231 B
C
24 lines
231 B
C
|
#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
|