forked from urbit/vere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.c
40 lines (33 loc) · 706 Bytes
/
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
/// @file
#include "log.h"
#include <stdarg.h>
#include "options.h"
void
u3l_log(const char* format, ...)
{
va_list myargs;
va_start(myargs, format);
if (u3C.stderr_log_f) {
// the user set their own logging function. render the line and redirect
// to them.
//
char msg[4096];
vsnprintf(msg, 4096, format, myargs);
u3C.stderr_log_f(msg);
} else {
// this process did not set a logging function, fallback to stderr
//
vfprintf(stderr, format, myargs);
fprintf(stderr, "\r\n");
fflush(stderr);
}
va_end(myargs);
}
u3_weak
u3l_punt(const char* name, u3_weak pro)
{
if ( u3_none == pro ) {
u3l_log("%s-punt", name);
}
return pro;
}