Loading...
Searching...
No Matches
log.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2020 Inria
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23#include "log.h"
24
29#define LOG_WARN(...) LOG(LOG_WARNING, __VA_ARGS__)
30#define LOG_CRITICAL(...) LOG(LOG_ERROR, __VA_ARGS__)
31#define log_register(__X, __Y, __Z, __A, __B) {}
33
37struct log {
38};
39
40#ifdef __cplusplus
41}
42#endif
System logging header for mynewt-core.
Empty log structure.
Definition log.h:37