bux API Reference 1.12.3
Static library of whatever are seen required in general purpose but not directly supported from Modern C++. Or whatever reusable originated from my side projects.
Loading...
Searching...
No Matches
LogLevel.h
Go to the documentation of this file.
1#pragma once
2
3namespace bux {
4
5//
6// Types
7//
17static_assert(LL_FATAL < LL_ERROR);
18static_assert(LL_ERROR < LL_WARNING);
19static_assert(LL_WARNING < LL_INFO);
20static_assert(LL_INFO < LL_DEBUG);
21static_assert(LL_DEBUG < LL_VERBOSE);
22
23} // namespace bux
24
25using bux::LL_FATAL;
26using bux::LL_ERROR;
27using bux::LL_WARNING;
28using bux::LL_INFO;
29using bux::LL_DEBUG;
30using bux::LL_VERBOSE;
@ LL_DEBUG
Debug only logs which can be suppressed easily for releases.
Definition LogLevel.h:14
@ LL_WARNING
Situation that should be warned but should not have sabotaged anything already.
Definition LogLevel.h:12
@ LL_ERROR
Error not serious enough that the program can continue to run.
Definition LogLevel.h:11
@ LL_INFO
Information worth mentioning about the current status, be it normal or abnormal.
Definition LogLevel.h:13
@ LL_VERBOSE
More detailed or advanced information probably considered too much by some.
Definition LogLevel.h:15
@ LL_FATAL
Error serious enough that the program should shut down immediately after reporting this.
Definition LogLevel.h:10
THE common namespace of bux library.
Definition AtomiX.cpp:3
E_LogLevel
Definition LogLevel.h:9
@ LL_DEBUG
Debug only logs which can be suppressed easily for releases.
Definition LogLevel.h:14
@ LL_WARNING
Situation that should be warned but should not have sabotaged anything already.
Definition LogLevel.h:12
@ LL_ERROR
Error not serious enough that the program can continue to run.
Definition LogLevel.h:11
@ LL_INFO
Information worth mentioning about the current status, be it normal or abnormal.
Definition LogLevel.h:13
@ LL_VERBOSE
More detailed or advanced information probably considered too much by some.
Definition LogLevel.h:15
@ LL_FATAL
Error serious enough that the program should shut down immediately after reporting this.
Definition LogLevel.h:10