Better defaults management, logger class implementation with logging levels, and write to file configuration implementation
This commit is contained in:
10
include/LoggingLevels.hpp
Normal file
10
include/LoggingLevels.hpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#pragma once
|
||||
|
||||
// Log level enum that will be accessible to modules
|
||||
enum LoggingLevels {
|
||||
FATAL = 0,
|
||||
ERROR = 1,
|
||||
WARN = 2,
|
||||
INFO = 3,
|
||||
DEBUG = 4
|
||||
};
|
||||
Reference in New Issue
Block a user