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

22 lines
240 B
C
Raw Normal View History

2018-06-26 12:59:31 +02:00
#ifndef LLARP_LOGGER_H
#define LLARP_LOGGER_H
extern "C"
2018-06-26 12:59:31 +02:00
{
enum LogLevel
{
eLogDebug,
eLogInfo,
eLogWarn,
eLogError
};
void
cSetLogLevel(enum LogLevel lvl);
void
cSetLogNodeName(const char* name);
}
2018-06-26 12:59:31 +02:00
#endif