blob: 8946d82a51045458d8b9131fffc315c49d34fed6 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010024#ifndef __ARM_COMPUTE_GRAPH_LOGGER_H__
25#define __ARM_COMPUTE_GRAPH_LOGGER_H__
Georgios Pinitasd8734b52017-12-22 15:27:52 +000026
27#include "arm_compute/core/utils/logging/Macros.h"
28
Michalis Spyrou7043d362018-12-03 13:58:32 +000029#ifdef ARM_COMPUTE_LOGGING_ENABLED
Georgios Pinitasd8734b52017-12-22 15:27:52 +000030/** Create a default core logger
31 *
32 * @note It will eventually create all default loggers in don't exist
33 */
34#define ARM_COMPUTE_CREATE_DEFAULT_GRAPH_LOGGER() \
35 do \
36 { \
37 if(arm_compute::logging::LoggerRegistry::get().logger("GRAPH") == nullptr) \
38 { \
39 arm_compute::logging::LoggerRegistry::get().create_reserved_loggers(); \
40 } \
41 } while(false)
Michalis Spyrou7043d362018-12-03 13:58:32 +000042#else /* ARM_COMPUTE_LOGGING_ENABLED */
43#define ARM_COMPUTE_CREATE_DEFAULT_GRAPH_LOGGER()
44#endif /* ARM_COMPUTE_LOGGING_ENABLED */
Georgios Pinitasd8734b52017-12-22 15:27:52 +000045
46#define ARM_COMPUTE_LOG_GRAPH(log_level, x) \
47 ARM_COMPUTE_CREATE_DEFAULT_GRAPH_LOGGER(); \
48 ARM_COMPUTE_LOG_STREAM("GRAPH", log_level, x)
49
50#define ARM_COMPUTE_LOG_GRAPH_VERBOSE(x) \
51 ARM_COMPUTE_CREATE_DEFAULT_GRAPH_LOGGER(); \
52 ARM_COMPUTE_LOG_STREAM("GRAPH", arm_compute::logging::LogLevel::VERBOSE, x)
53
54#define ARM_COMPUTE_LOG_GRAPH_INFO(x) \
55 ARM_COMPUTE_CREATE_DEFAULT_GRAPH_LOGGER(); \
56 ARM_COMPUTE_LOG_STREAM("GRAPH", arm_compute::logging::LogLevel::INFO, x)
57
58#define ARM_COMPUTE_LOG_GRAPH_WARNING(x) \
59 ARM_COMPUTE_CREATE_DEFAULT_GRAPH_LOGGER(); \
60 ARM_COMPUTE_LOG_STREAM("GRAPH", arm_compute::logging::LogLevel::WARN, x)
61
62#define ARM_COMPUTE_LOG_GRAPH_ERROR(x) \
63 ARM_COMPUTE_CREATE_DEFAULT_GRAPH_LOGGER(); \
64 ARM_COMPUTE_LOG_STREAM("GRAPH", arm_compute::logging::LogLevel::ERROR, x)
65
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010066#endif /* __ARM_COMPUTE_GRAPH_LOGGER_H__ */