DPM-Core/include/LoggingLevels.hpp

11 lines
165 B
C++
Raw Normal View History

#pragma once
// Log level enum that will be accessible to modules
enum LoggingLevels {
FATAL = 0,
ERROR = 1,
WARN = 2,
INFO = 3,
DEBUG = 4
};