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
lfs_log.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2024 Joshua DeWeese <josh.deweese@gmail.com>
3
*
4
* This file is subject to the terms and conditions of the GNU Lesser General
5
* Public License v2.1. See the file LICENSE in the top level directory for more
6
* details.
7
*/
8
24
#ifndef LFS_LOG_H
25
#define LFS_LOG_H
26
27
#ifdef __cplusplus
28
extern
"C"
{
29
#endif
30
31
#include "log.h"
32
33
#ifdef LFS_YES_TRACE
34
# define ENABLE_DEBUG 1
35
#endif
36
#include "
debug.h
"
37
44
#define _LFS_TRACE(fmt, ...) \
45
DEBUG("%s:%d: " fmt "%s\n", __FILE__, __LINE__, __VA_ARGS__)
44
#define _LFS_TRACE(fmt, ...) \
…
46
54
#define _LFS_LOG(level, fmt, ...)\
55
LOG(level, "lfs: " fmt "%s\n", __VA_ARGS__)
54
#define _LFS_LOG(level, fmt, ...)\
…
56
65
#ifdef LFS_YES_TRACE
66
# define LFS_TRACE(...) _LFS_TRACE(__VA_ARGS__, "")
67
#else
68
# define LFS_TRACE(...)
69
#endif
70
72
#ifndef LFS_NO_DEBUG
73
# define LFS_DEBUG(...) _LFS_LOG(LOG_DEBUG, __VA_ARGS__, "")
74
#else
75
# define LFS_DEBUG(...)
76
#endif
77
79
#ifndef LFS_NO_WARN
80
# define LFS_WARN(...) _LFS_LOG(LOG_WARNING, __VA_ARGS__, "")
81
#else
82
# define LFS_WARN(...)
83
#endif
84
86
#ifndef LFS_NO_ERROR
87
# define LFS_ERROR(...) _LFS_LOG(LOG_ERROR, __VA_ARGS__, "")
88
#else
89
# define LFS_ERROR(...)
90
#endif
91
94
#endif
/* LFS_LOG_H */
debug.h
Debug-header.
Generated on Thu Apr 3 2025 17:38:29 by
1.12.0