#include namespace llarp { std::string LogLevelToString(LogLevel lvl) { switch(lvl) { case eLogTrace: return "TRC"; case eLogDebug: return "DBG"; case eLogInfo: return "NFO"; case eLogWarn: return "WRN"; case eLogError: return "ERR"; default: return "???"; } } } // namespace llarp