LogLevel.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_UTIL_LOGGING_LOGLEVEL_H_
36 #define _BLAZE_UTIL_LOGGING_LOGLEVEL_H_
37 
38 
39 namespace blaze {
40 
41 namespace logging {
42 
43 //=================================================================================================
44 //
45 // LOGGING LEVELS
46 //
47 //=================================================================================================
48 
49 //*************************************************************************************************
76 {
77  inactive = 0,
78  error = 1,
79  warning = 2,
80  info = 3,
81  progress = 4,
82  debug = 5,
83  detail = 6
84 };
85 //*************************************************************************************************
86 
87 } // namespace logging
88 
89 } // namespace blaze
90 
91 #endif
Log level for (sever) errors.
Definition: LogLevel.h:78
Log level for high-level information.
Definition: LogLevel.h:80
Log level for no logging.
Definition: LogLevel.h:77
LogLevel
Logging levels.The LogLevel type enumeration represents the type of the global logging level...
Definition: LogLevel.h:75
Log level for progress information.
Definition: LogLevel.h:81
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Log level for detail information.
Definition: LogLevel.h:83
Log level for debug information.
Definition: LogLevel.h:82
Log level for warnings.
Definition: LogLevel.h:79