-
Notifications
You must be signed in to change notification settings - Fork 8
/
klib_log.c
executable file
·103 lines (89 loc) · 2.87 KB
/
klib_log.c
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*===========================================================================
klib
klib_log.c
(c)2000-2012 Kevin Boone
============================================================================*/
#include <stdarg.h>
#include <string.h>
#include <errno.h>
#include <stdio.h>
#include "klib_log.h"
#include "klib_string.h"
static int klib_log_level = KLIB_LOG_ERROR;
static KlibLogHandler klib_log_handler = NULL;
/*===========================================================================
klib_log_set_handler
============================================================================*/
void klib_log_set_handler (KlibLogHandler handler)
{
klib_log_handler = handler;
}
/*===========================================================================
klib_log_set_level
============================================================================*/
void klib_log_set_level (int level)
{
klib_log_level = level;
}
/*===========================================================================
klib_log_v
============================================================================*/
void klib_log_v (int level, const char *fmt, va_list ap)
{
if (level > klib_log_level) return;
const char *s = klib_string_format_args (fmt, ap);
if (klib_log_handler)
klib_log_handler (level, s);
else
fprintf (stderr, "%s\n", s);
}
/*===========================================================================
klib_log_info
============================================================================*/
void klib_log_info (const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
klib_log_v (KLIB_LOG_INFO, fmt, ap);
va_end (ap);
}
/*===========================================================================
klib_log_error
============================================================================*/
void klib_log_error (const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
klib_log_v (KLIB_LOG_ERROR, fmt, ap);
va_end (ap);
}
/*===========================================================================
klib_log_warning
============================================================================*/
void klib_log_warning (const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
klib_log_v (KLIB_LOG_WARNING, fmt, ap);
va_end (ap);
}
/*===========================================================================
klib_log_debug
============================================================================*/
void klib_log_debug (const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
klib_log_v (KLIB_LOG_DEBUG, fmt, ap);
va_end (ap);
}
/*===========================================================================
klib_log_trace
============================================================================*/
void klib_log_trace (const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
klib_log_v (KLIB_LOG_TRACE, fmt, ap);
va_end (ap);
}