1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/logger.h

22 lines
254 B
C

#ifndef LLARP_LOGGER_H
#define LLARP_LOGGER_H
extern "C"
{
enum LogLevel
{
eLogDebug,
eLogInfo,
eLogWarn,
eLogError,
eLogNone
};
void
cSetLogLevel(enum LogLevel lvl);
void
cSetLogNodeName(const char* name);
}
#endif