1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* See LICENSE file for copyright and license details. */ #include "log.h" int main(int argc, char **argv) { Log *log = log_create(__FILE__); log_debug(log, "debug log"); log_info(log, "info log"); log_warn(log, "warning log"); log_error(log, "error log"); return 0; }