blob: ed60fcc5e2e2e1c725e55d3853c7dd2ebebc43ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* 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");
log_warn(log, "warning log");
log_error(log, "error log");
printf("Version: %s\n", loglibver());
return 0;
}
|