TeensyNanoExoCode
Loading...
Searching...
No Matches
LogLevels.h
Go to the documentation of this file.
1#ifndef LOG_LEVELS_H
2#define LOG_LEVELS_H
3
4enum class LogLevel:int
5{
6 Release = 0,
7 Error = 1,
8 Warn = 2,
9 Debug = 3,
10 Disable = 4
11};
12
13#endif
LogLevel
Definition LogLevels.h:5