Sensor3/lib/patrix/log.h

15 lines
226 B
C

#ifndef SENSOR3_LOG_H
#define SENSOR3_LOG_H
void debug(const char *format, ...);
void info(const char *format, ...);
void error(const char *format, ...);
void setDebugEnabled(bool enabled);
bool isDebugEnabled();
#endif