All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LogLevel.h
Go to the documentation of this file.
1 //=================================================================================================
20 //=================================================================================================
21 
22 #ifndef _BLAZE_UTIL_LOGGING_LOGLEVEL_H_
23 #define _BLAZE_UTIL_LOGGING_LOGLEVEL_H_
24 
25 
26 namespace blaze {
27 
28 namespace logging {
29 
30 //=================================================================================================
31 //
32 // LOGGING LEVELS
33 //
34 //=================================================================================================
35 
36 //*************************************************************************************************
63 {
64  inactive = 0,
65  error = 1,
66  warning = 2,
67  info = 3,
68  progress = 4,
69  debug = 5,
70  detail = 6
71 };
72 //*************************************************************************************************
73 
74 } // namespace logging
75 
76 } // namespace blaze
77 
78 #endif