summaryrefslogtreecommitdiff
path: root/test/basic.c
blob: d5148144754aaccce1de1af9bfd4ab08b9a3c54a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * Copyright 2017 Daniel Silverstone <dsilvers@netsurf-browser.org>
 *
 * This file is part of libnslog.
 *
 * Licensed under the MIT License,
 *		  http://www.opensource.org/licenses/mit-license.php
 */

#include "nslog/nslog.h"

#include <stdio.h>

NSLOG_DEFINE_CATEGORY(test, "Test category");

static void test_render_function(
	void *_ctx, nslog_entry_context_t *ctx,
	const char *fmt, va_list args)
{
	(void)ctx;
	fprintf(stderr, "%s %s:%d [%s] %s() ",
		nslog_level_name(ctx->level),
		ctx->filename, ctx->lineno,
		ctx->category->name,
		ctx->funcname);
	vfprintf(stderr, fmt, args);
	fprintf(stderr, "\n");
}

int main(int argc, char **argv)
{
	nslog_set_render_callback(test_render_function, NULL);
	NSLOG(test, INFO, "Pre-uncorking");
	fprintf(stderr, "About to nslog_uncork()\n");
	nslog_uncork();
	fprintf(stderr, "Uncorked now\n");
	NSLOG(test, WARN, "argc=%d", argc);
	for (int i = 0; i < argc; ++i)
		NSLOG(test, WARN, "argv[%d] = %s", i, argv[i]);
	return 0;
}