You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
370 B

/*
* logger.h
*
* Created on: Jul 4, 2021
* Author: Andreas Berthoud
*/
#ifndef INC_LOGGER_H_
#define INC_LOGGER_H_
void log_debug(const char * format, int nargs, ...);
void log_info(const char * format, int nargs, ...);
void log_warning(const char * format, int nargs, ...);
void log_error(const char * format, int nargs, ...);
#endif /* INC_LOGGER_H_ */