2021-08-05 10:30:10 -04:00
|
|
|
/*
|
2022-01-17 21:32:56 -05:00
|
|
|
* SPDX-FileCopyrightText: 2016-2022 Espressif Systems (Shanghai) CO LTD
|
2021-08-05 10:30:10 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2017-04-11 03:44:43 -04:00
|
|
|
|
|
|
|
#pragma once
|
2020-07-21 01:07:34 -04:00
|
|
|
#include "esp_rom_sys.h"
|
2020-09-25 03:23:52 -04:00
|
|
|
|
2017-04-11 03:44:43 -04:00
|
|
|
/**
|
|
|
|
* @file soc_log.h
|
|
|
|
* @brief SOC library logging functions
|
|
|
|
*
|
|
|
|
* To make SOC library compatible with environments which don't use ESP-IDF,
|
|
|
|
* this header file provides wrappers for logging functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef ESP_PLATFORM
|
|
|
|
#include "esp_log.h"
|
2018-10-15 02:59:46 -04:00
|
|
|
#define SOC_LOGE(tag, fmt, ...) ESP_EARLY_LOGE(tag, fmt, ##__VA_ARGS__)
|
|
|
|
#define SOC_LOGW(tag, fmt, ...) ESP_EARLY_LOGW(tag, fmt, ##__VA_ARGS__)
|
|
|
|
#define SOC_LOGI(tag, fmt, ...) ESP_EARLY_LOGI(tag, fmt, ##__VA_ARGS__)
|
|
|
|
#define SOC_LOGD(tag, fmt, ...) ESP_EARLY_LOGD(tag, fmt, ##__VA_ARGS__)
|
|
|
|
#define SOC_LOGV(tag, fmt, ...) ESP_EARLY_LOGV(tag, fmt, ##__VA_ARGS__)
|
2017-04-11 03:44:43 -04:00
|
|
|
|
|
|
|
#else
|
2020-01-07 23:50:03 -05:00
|
|
|
|
2020-07-21 01:07:34 -04:00
|
|
|
#define SOC_LOGE(tag, fmt, ...) esp_rom_printf("%s(err): " fmt, tag, ##__VA_ARGS__)
|
|
|
|
#define SOC_LOGW(tag, fmt, ...) esp_rom_printf("%s(warn): " fmt, tag, ##__VA_ARGS__)
|
|
|
|
#define SOC_LOGI(tag, fmt, ...) esp_rom_printf("%s(info): " fmt, tag, ##__VA_ARGS__)
|
|
|
|
#define SOC_LOGD(tag, fmt, ...) esp_rom_printf("%s(dbg): " fmt, tag, ##__VA_ARGS__)
|
|
|
|
#define SOC_LOGV(tag, fmt, ...) esp_rom_printf("%s: " fmt, tag, ##__VA_ARGS__)
|
2017-04-11 03:44:43 -04:00
|
|
|
#endif //ESP_PLATFORM
|