Toggle navigation
Documentation
The friendly Operating System for the Internet of Things
Main Page
Related Pages
Supported Boards
Modules
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Enumerations
Data Structures
Data Structures
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
w
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerator
Related Symbols
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
►
RIOT OS
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
log_module.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2019 Gunar Schorcht
3
*
4
* This file is subject to the terms and conditions of the GNU Lesser
5
* General Public License v2.1. See the file LICENSE in the top level
6
* directory for more details.
7
*/
8
19
#ifndef LOG_MODULE_H
20
#define LOG_MODULE_H
21
22
#ifdef __cplusplus
23
extern
"C"
{
24
#endif
25
26
#include <stdio.h>
27
#include "
esp_common_log.h
"
28
29
#ifdef MODULE_LOG_PRINTFNOFORMAT
30
31
static
inline
void
log_write
(
unsigned
level,
const
char
*format, ...) {
32
(void)level;
33
puts(format);
34
}
35
36
#else
/* MODULE_LOG_PRINTFNOFORMAT */
37
38
#define log_write(level, ...) \
39
do { \
40
if (level == LOG_ERROR) { \
41
LOG_TAG(LOG_ERROR, E, __func__, ##__VA_ARGS__); \
42
} \
43
else if (level == LOG_WARNING) { \
44
LOG_TAG(LOG_WARNING, W, __func__, ##__VA_ARGS__); \
45
} \
46
else if (level == LOG_INFO) { \
47
LOG_TAG(LOG_INFO, D, __func__, ##__VA_ARGS__); \
48
} \
49
else if (level == LOG_DEBUG) { \
50
LOG_TAG(LOG_DEBUG, E, __func__, ##__VA_ARGS__); \
51
} \
52
} while (0U)
53
54
#endif
/* MODULE_LOG_PRINTFNOFORMAT */
55
56
#ifdef __cplusplus
57
}
58
#endif
60
#endif
/* LOG_MODULE_H */
log_write
#define log_write(level,...)
Default log_write function, just maps to printf.
Definition
log.h:120
esp_common_log.h
Common log macros for ESP SoCs.
Generated on Thu Apr 3 2025 00:20:46 by
1.12.0