blob: 34c2fc561a7fb6f78f9c2cafeaa755f88c28d075 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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;
}
|