lokinet/include/llarp/logger.h
Jeff Becker d511057b7d * logging updates
* nicknames in RC (yw kee)

* spec update

* more hidden service code
2018-08-02 10:48:43 +10:00

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