c-logger/example.c

9 lines
163 B
C

#include "logger.h"
int main() {
log_info("Starting! %s", "123\n");
log_warning("This is a warning!");
log_error("This shoudn't have happened!");
return 0;
}