Initial commit
Initial commit.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Copyright (c) 2018 Runtime Inc
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#ifndef __MCUBOOT_LOGGING_H__
|
||||
#define __MCUBOOT_LOGGING_H__
|
||||
|
||||
/*
|
||||
* When building for targets running Zephyr, delegate to its native
|
||||
* logging subsystem.
|
||||
*/
|
||||
#ifdef CONFIG_MCUBOOT
|
||||
#define MCUBOOT_LOG_MODULE_DECLARE(domain) LOG_MODULE_DECLARE(domain, CONFIG_MCUBOOT_LOG_LEVEL)
|
||||
#define MCUBOOT_LOG_MODULE_REGISTER(domain) LOG_MODULE_REGISTER(domain, CONFIG_MCUBOOT_LOG_LEVEL)
|
||||
#else
|
||||
#define MCUBOOT_LOG_MODULE_DECLARE(domain) LOG_MODULE_DECLARE(domain, CONFIG_MCUBOOT_UTIL_LOG_LEVEL)
|
||||
#define MCUBOOT_LOG_MODULE_REGISTER(domain) LOG_MODULE_REGISTER(domain, CONFIG_MCUBOOT_UTIL_LOG_LEVEL)
|
||||
#endif
|
||||
|
||||
#define MCUBOOT_LOG_ERR(...) LOG_ERR(__VA_ARGS__)
|
||||
#define MCUBOOT_LOG_WRN(...) LOG_WRN(__VA_ARGS__)
|
||||
#define MCUBOOT_LOG_INF(...) LOG_INF(__VA_ARGS__)
|
||||
#define MCUBOOT_LOG_DBG(...) LOG_DBG(__VA_ARGS__)
|
||||
#define MCUBOOT_LOG_SIM(...) IGNORE(__VA_ARGS__)
|
||||
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
#endif /* __MCUBOOT_LOGGING_H__ */
|
||||
Reference in New Issue
Block a user