lokinet/llarp/util/logging/loglevel.hpp
2019-09-03 20:52:27 +01:00

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