CuteHMI - CuteHMI (CuteHMI.2)
loggingMacros.hpp
1 #ifndef H_EXTENSIONS_CUTEHMI_2_INCLUDE_CUTEHMI_LOGGINGMACROS_HPP
2 #define H_EXTENSIONS_CUTEHMI_2_INCLUDE_CUTEHMI_LOGGINGMACROS_HPP
3 
4 #include <QLoggingCategory>
5 
25 
32 #ifndef CUTEHMI_NDEBUG
33  #define CUTEHMI_DEBUG(EXPR) qCDebug(loggingCategory()).nospace().noquote() << EXPR
34 #else
35  #define CUTEHMI_DEBUG(EXPR) (void)0
36 #endif
37 
43 #ifndef CUTEHMI_NINFO
44  #define CUTEHMI_INFO(EXPR) qCInfo(loggingCategory()).nospace().noquote() << EXPR
45 #else
46  #define CUTEHMI_INFO(EXPR) (void)0
47 #endif
48 
54 #ifndef CUTEHMI_NWARNING
55  #define CUTEHMI_WARNING(EXPR) qCWarning(loggingCategory()).nospace().noquote() << EXPR
56 #else
57  #define CUTEHMI_WARNING(EXPR) (void)0
58 #endif
59 
65 #ifndef CUTEHMI_NCRITICAL
66  #define CUTEHMI_CRITICAL(EXPR) qCCritical(loggingCategory()).nospace().noquote() << EXPR
67 #else
68  #define CUTEHMI_CRITICAL(EXPR) (void)0
69 #endif
70 
76 #define CUTEHMI_DIE(...) QMessageLogger(__FILE__, __LINE__, Q_FUNC_INFO, loggingCategory().categoryName()).fatal(__VA_ARGS__)
77 
84 #ifndef CUTEHMI_NDEBUG
85  #define CUTEHMI_ASSERT(EXPR, MSG) Q_ASSERT_X(EXPR, __FILE__, MSG)
86 #else
87  #define CUTEHMI_ASSERT(EXPR, MSG) (void)0
88 #endif
89 
91 
92 #endif
93 
94 //(c)C: Copyright © 2018-2020, Michał Policht <michal@policht.pl>. All rights reserved.
95 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
96 //(c)C: This file is a part of CuteHMI.
97 //(c)C: CuteHMI is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
98 //(c)C: CuteHMI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
99 //(c)C: You should have received a copy of the GNU Lesser General Public License along with CuteHMI. If not, see <https://www.gnu.org/licenses/>.
100 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
101 //(c)C: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
102 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
103 //(c)C: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.