Sensor3/lib/patrix/log.h

15 lines
286 B
C

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