OSVR-Core
LogLevelC.h
Go to the documentation of this file.
1 
14 // Copyright 2016 Sensics, Inc.
15 //
16 // Licensed under the Apache License, Version 2.0 (the "License");
17 // you may not use this file except in compliance with the License.
18 // You may obtain a copy of the License at
19 //
20 // http://www.apache.org/licenses/LICENSE-2.0
21 //
22 // Unless required by applicable law or agreed to in writing, software
23 // distributed under the License is distributed on an "AS IS" BASIS,
24 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25 // See the License for the specific language governing permissions and
26 // limitations under the License.
27 
28 #ifndef INCLUDED_LogLevelC_h_GUID_FF2DBB1E_A452_44B9_AE54_491C87D061D6
29 #define INCLUDED_LogLevelC_h_GUID_FF2DBB1E_A452_44B9_AE54_491C87D061D6
30 
31 
32 // Internal Includes
33 // - none
34 
35 // Library/third-party includes
36 // - none
37 
38 // Standard includes
39 // - none
40 
44 typedef enum OSVR_LogLevel {
45  OSVR_LOGLEVEL_TRACE = 0, //< function entry and exit, control flow.
46  OSVR_LOGLEVEL_DEBUG = 10, //< debug-level messages.
47  OSVR_LOGLEVEL_INFO = 20, //< informational messages.
48  OSVR_LOGLEVEL_NOTICE = 30, //< normal but significant condition.
49  OSVR_LOGLEVEL_WARN = 40, //< warning conditions.
50  OSVR_LOGLEVEL_ERROR = 50, //< error messages.
51  OSVR_LOGLEVEL_CRITICAL = 60, //< critical conditions.
53 
54 #endif // INCLUDED_LogLevelC_h_GUID_FF2DBB1E_A452_44B9_AE54_491C87D061D6
55 
OSVR_LogLevel
Log message severity levels.
Definition: LogLevelC.h:44