15 lines
286 B
C
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
|