DPM-Core/include/LoggingLevels.hpp

12 lines
211 B
C++
Raw Normal View History

#pragma once
2025-03-08 04:53:31 +00:00
extern "C" {
// Log level enum that will be accessible to modules
enum LoggingLevels {
FATAL = 0,
ERROR = 1,
WARN = 2,
INFO = 3,
DEBUG = 4
};
}