EstervQrCode 2.0.0
Library for qr code manipulation
Loading...
Searching...
No Matches
logger.defines.hpp
1// This file is part of OpenCV project.
2// It is subject to the license terms in the LICENSE file found in the top-level directory
3// of this distribution and at http://opencv.org/license.html.
4
5#ifndef OPENCV_LOGGER_DEFINES_HPP
6#define OPENCV_LOGGER_DEFINES_HPP
7
10
11// Supported logging levels and their semantic
12#define CV_LOG_LEVEL_SILENT 0
13#define CV_LOG_LEVEL_FATAL 1
14#define CV_LOG_LEVEL_ERROR 2
15#define CV_LOG_LEVEL_WARN 3
16#define CV_LOG_LEVEL_INFO 4
17#define CV_LOG_LEVEL_DEBUG 5
18#define CV_LOG_LEVEL_VERBOSE 6
19
20namespace cv {
21namespace utils {
22namespace logging {
23
37
38}}} // namespace
39
41
42#endif // OPENCV_LOGGER_DEFINES_HPP
LogLevel
Supported logging levels and their semantic.
Definition logger.defines.hpp:25
@ ENUM_LOG_LEVEL_FORCE_INT
Definition logger.defines.hpp:34
@ LOG_LEVEL_INFO
Info message.
Definition logger.defines.hpp:30
@ LOG_LEVEL_WARNING
Warning message.
Definition logger.defines.hpp:29
@ LOG_LEVEL_FATAL
Fatal (critical) error (unrecoverable internal error)
Definition logger.defines.hpp:27
@ LOG_LEVEL_DEBUG
Debug message. Disabled in the "Release" build.
Definition logger.defines.hpp:31
@ LOG_LEVEL_VERBOSE
Verbose (trace) messages. Requires verbosity level. Disabled in the "Release" build.
Definition logger.defines.hpp:32
@ LOG_LEVEL_ERROR
Error message.
Definition logger.defines.hpp:28
@ LOG_LEVEL_SILENT
for using in setLogVevel() call
Definition logger.defines.hpp:26
"black box" representation of the file storage associated with a file on disk.
Definition calib3d.hpp:441