errLv.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include "indep/common.hpp"
5#include "indep/def.hpp"
6#include "indep/macro.hpp"
7
8namespace by {
12 class _nout errLv {
13 BY(ME(errLv))
14
15 public:
16 enum level {
17 ERR,
18 WARN,
19 INFO
20 };
21
22 public:
25 static const std::string& getName(level lv);
26 };
27}
Error level definitions and utilities.
Definition: errLv.hpp:12
static const std::string & getName(level lv)
Get human-readable name for error level.