mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
16 lines
162 B
C
16 lines
162 B
C
|
#ifndef LLARP_LOGGER_H
|
||
|
#define LLARP_LOGGER_H
|
||
|
|
||
|
enum LogLevel
|
||
|
{
|
||
|
eLogDebug,
|
||
|
eLogInfo,
|
||
|
eLogWarn,
|
||
|
eLogError
|
||
|
};
|
||
|
|
||
|
void
|
||
|
cSetLogLevel(enum LogLevel lvl);
|
||
|
|
||
|
#endif
|