galaxy 1.0.0
Real-Time C++23 Game Programming Framework. Built on data-driven design principles and agile software engineering.
Loading...
Searching...
No Matches
LogLevel.hpp
Go to the documentation of this file.
1
7
8#ifndef GALAXY_LOGGING_LOGLEVEL_HPP_
9#define GALAXY_LOGGING_LOGLEVEL_HPP_
10
11namespace galaxy
12{
13 namespace logging
14 {
18 enum class LogLevel : int
19 {
23 _INFO_ = 0,
24
28 _DEBUG_ = 1,
29
33 _WARNING_ = 2,
34
38 _ERROR_ = 3,
39
43 _FATAL_ = 4
44 };
45 } // namespace logging
46} // namespace galaxy
47
48#endif
LogLevel
Used to determine filtering and colouring of log messages.
Definition LogLevel.hpp:19
@ _DEBUG_
Debug Log Level.
@ _ERROR_
Error Log Level.
@ _FATAL_
Fatal Log Level.
@ _INFO_
Info Log Level.
@ _WARNING_
Warning Log Level.
Timer.hpp galaxy.
Definition Async.hpp:17