diff options
-rw-r--r-- | test/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/main.c b/test/main.c index 475d23d..ed60fcc 100644 --- a/test/main.c +++ b/test/main.c @@ -1,10 +1,13 @@ /* See LICENSE file for copyright and license details. */ +#include <stdio.h> #include "log.h" int main(int argc, char **argv) { + printf("Init tests\n\n"); + Log *log = log_create(__FILE__); log_debug(log, "debug log"); log_info(log, "info log"); |