mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 20:47:08 +03:00
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
|