Mercurial > thymian
diff common/logtypes.h @ 0:a4671277546c tip
created the repository for the thymian project
| author | ferencd |
|---|---|
| date | Tue, 17 Aug 2021 11:19:54 +0200 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/logtypes.h Tue Aug 17 11:19:54 2021 +0200 @@ -0,0 +1,20 @@ +#ifndef _LOG_TYPES_H +#define _LOG_TYPES_H + +namespace unafrog { +namespace log { + +enum class LogLevel +{ + LOG_EMERGENCY = 1, + LOG_CRITICAL = 2, + LOG_ERROR = 3, + LOG_WARNING = 4, + LOG_INFORMATION = 5, + LOG_DEBUG = 6, + LOG_TRACE = 7 +}; + +}} + +#endif
