mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
25 lines
280 B
C
25 lines
280 B
C
#ifndef LLARP_LOGGER_H
|
|
#define LLARP_LOGGER_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
enum LogLevel
|
|
{
|
|
eLogDebug,
|
|
eLogInfo,
|
|
eLogWarn,
|
|
eLogError,
|
|
eLogNone
|
|
};
|
|
|
|
void
|
|
cSetLogLevel(enum LogLevel lvl);
|
|
|
|
void
|
|
cSetLogNodeName(const char* name);
|
|
}
|
|
#endif
|
|
|
|
#endif
|