YAGE  v0.1.4.0
Yet Another Game Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
loglevel.h
Go to the documentation of this file.
1 
9 #ifndef YAGE_CORE_LOGLEVEL_H
10 #define YAGE_CORE_LOGLEVEL_H
11 
12 namespace yage
13 {
14 
20 enum class LogLevel {
23  DEBUG,
24 
26  INFO,
27 
29  WARNING,
30 
32  ERROR,
33 
36  FATAL,
37 };
38 }
39 
40 #endif
Warning message.
Fatal message that should be output when the game crashes.
LogLevel
Different log levels that can be assigned to each message sent to the Logger.
Definition: loglevel.h:20
Lowest log level. This is used by the game engine to output debugging information but is turned off i...
Error message.
Information message.