lokinet/llarp/util/loglevel.hpp
2019-06-13 09:26:34 -04: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