blob: 4fdcde34407b11cc69cff47d3c136665f7127190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
use fmt;
export const silent = tracer {
log = &silent_log,
};
fn silent_log(
tr: *tracer,
ctx: nullable *context,
lvl: level,
fmt: str,
fields: fmt::field...
) void = {
void;
};
|