UNPKG

310 BJavaScriptView Raw
1async function log(formatter, ...args) {
2 if (process.env.NODE_ENV !== 'production') {
3 try {
4 const {
5 debug
6 } = await import('debug');
7 const logger = debug('query-registry');
8 logger(formatter, args);
9 } catch {}
10 }
11}
12
13export { log };
14//# sourceMappingURL=log.esm.js.map