aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/main.c b/main.c
index 5119573..34c2fc5 100644
--- a/main.c
+++ b/main.c
@@ -1,7 +1,12 @@
/* 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, "test log ");
+
return 0;
-} \ No newline at end of file
+}