MCPcopy
hub / github.com/QwikDev/qwik / log

Function log

packages/qwik/src/core/preloader/queue.ts:19–25  ·  view source on GitHub ↗
(...args: any[])

Source from the content-addressed store, hash-verified

17const queue: BundleImport[] = [];
18
19export const log = (...args: any[]) => {
20 // eslint-disable-next-line no-console
21 console.log(
22 `Preloader ${Date.now() - loadStart}ms ${preloadCount}/${queue.length} queued>`,
23 ...args
24 );
25};
26
27export const resetQueue = () => {
28 bundles.clear();

Callers 4

loadBundleGraphFunction · 0.90
triggerFunction · 0.70
preloadOneFunction · 0.70
adjustProbabilitiesFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected