mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
c7940076bf
remove extern "C"
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
|