mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
23 lines
346 B
C++
23 lines
346 B
C++
#ifndef LLARP_UTIL_LOG_LEVEL_HPP
|
|
#define LLARP_UTIL_LOG_LEVEL_HPP
|
|
#include <string>
|
|
|
|
namespace llarp
|
|
{
|
|
// probably will need to move out of llarp namespace for c api
|
|
enum LogLevel
|
|
{
|
|
eLogDebug,
|
|
eLogInfo,
|
|
eLogWarn,
|
|
eLogError,
|
|
eLogNone
|
|
};
|
|
|
|
std::string
|
|
LogLevelToString(LogLevel level);
|
|
|
|
} // namespace llarp
|
|
|
|
#endif
|