diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 +} |