esp8266ndn
NDN Arduino library for ESP8266 and more
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Functions
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
w
Typedefs
a
b
c
e
f
g
h
i
k
m
n
p
r
s
t
u
v
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
~
Variables
a
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
v
w
Typedefs
b
c
d
i
k
l
m
o
p
r
s
t
v
Enumerations
Enumerator
Related Functions
Files
File List
File Members
All
_
e
l
n
Macros
_
e
l
n
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
NDNph
src
ndnph
core
log.hpp
Go to the documentation of this file.
1
#ifndef NDNPH_CORE_LOG_HPP
2
#define NDNPH_CORE_LOG_HPP
3
4
#include "
common.hpp
"
5
#ifdef ARDUINO
6
#include "../port/clock/port.hpp"
7
#else
8
#include "../port/unixtime/port.hpp"
9
#endif
10
11
#ifndef NDNPH_LOG_PRINTF
12
#ifdef ARDUINO
13
#define NDNPH_LOG_PRINTF(...) Serial.printf(__VA_ARGS__)
14
#else
15
#ifndef NDNPH_LOG_FILE
16
#define NDNPH_LOG_FILE stderr
17
#endif
18
#define NDNPH_LOG_PRINTF(...) fprintf((NDNPH_LOG_FILE), ##__VA_ARGS__)
19
#endif
20
#endif
// NDNPH_LOG_PRINTF
21
22
#ifndef NDNPH_LOG_NOWVAR
23
#ifdef ARDUINO
24
#define NDNPH_LOG_NOWVAR millis()
25
#else
26
#define NDNPH_LOG_NOWVAR (ndnph::port::UnixTime::now() / 1000)
27
#endif
28
#endif
// NDNPH_LOG_NOWVAR
29
30
#ifndef NDNPH_LOG_NOWFMT
31
#ifdef ARDUINO
32
#define NDNPH_LOG_NOWFMT "%lu"
33
#else
34
#define NDNPH_LOG_NOWFMT "%"
PRIu64
35
#endif
36
#endif
// NDNPH_LOG_NOWFMT
37
43
#define NDNPH_LOG_MSG(category, fmt, ...) \
44
NDNPH_LOG_PRINTF(NDNPH_LOG_NOWFMT " ["
category "] " fmt, NDNPH_LOG_NOWVAR, ##__VA_ARGS__)
45
50
#define NDNPH_LOG_LINE(category, fmt, ...) NDNPH_LOG_MSG(category, fmt "\n"
, ##__VA_ARGS__)
51
52
#endif
// NDNPH_CORE_LOG_HPP
common.hpp
Generated by
1.9.1