mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
d511057b7d
* nicknames in RC (yw kee) * spec update * more hidden service code
22 lines
240 B
C
22 lines
240 B
C
#ifndef LLARP_LOGGER_H
|
|
#define LLARP_LOGGER_H
|
|
|
|
extern "C"
|
|
{
|
|
enum LogLevel
|
|
{
|
|
eLogDebug,
|
|
eLogInfo,
|
|
eLogWarn,
|
|
eLogError
|
|
};
|
|
|
|
void
|
|
cSetLogLevel(enum LogLevel lvl);
|
|
|
|
void
|
|
cSetLogNodeName(const char* name);
|
|
}
|
|
|
|
#endif
|