comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:a4671277546c
1 #ifndef _LOG_TYPES_H
2 #define _LOG_TYPES_H
3
4 namespace unafrog {
5 namespace log {
6
7 enum class LogLevel
8 {
9 LOG_EMERGENCY = 1,
10 LOG_CRITICAL = 2,
11 LOG_ERROR = 3,
12 LOG_WARNING = 4,
13 LOG_INFORMATION = 5,
14 LOG_DEBUG = 6,
15 LOG_TRACE = 7
16 };
17
18 }}
19
20 #endif