blob: bf71c371b968161c343967d68e6cf7ac9973ec76 (
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
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { primordials } from "ext:core/mod.js";
import { op_bootstrap_log_level } from "ext:core/ops";
const { SafeArrayIterator } = primordials;
// WARNING: Keep this in sync with Rust (search for LogLevel)
const LogLevel = {
Error: 1,
Warn: 2,
Info: 3,
Debug: 4,
};
const logSource = "JS";
let logLevel_ = null;
function logLevel() {
if (logLevel_ === null) {
logLevel_ = op_bootstrap_log_level() || 3;
}
return logLevel_;
}
function log(...args) {
if (logLevel() >= LogLevel.Debug) {
// if we destructure `console` off `globalThis` too early, we don't bind to
// the right console, therefore we don't log anything out.
globalThis.console.error(
`DEBUG ${logSource} -`,
...new SafeArrayIterator(args),
);
}
}
export { log };
|