forked from gronod/squeezelite-esp32
13 lines
352 B
C
13 lines
352 B
C
#ifndef LOGGER_H
|
|
#define LOGGER_H
|
|
|
|
#include <BellLogger.h>
|
|
|
|
#define CSPOT_LOG(type, ...) \
|
|
do \
|
|
{ \
|
|
bell::bellGlobalLogger->type(__FILE__, __LINE__, "cspot", __VA_ARGS__); \
|
|
} while (0)
|
|
|
|
#endif
|