MCPcopy
hub / github.com/smapiot/piral / logVerbose

Function logVerbose

src/tooling/piral-cli/src/common/log.ts:36–44  ·  view source on GitHub ↗
(message: string, ...args: Array<string | number | boolean>)

Source from the content-addressed store, hash-verified

34}
35
36export function logVerbose(message: string, ...args: Array<string | number | boolean>) {
37 const msg = format(message, ...args);
38
39 if (logLevel >= LogLevels.verbose) {
40 instance.info(msg);
41 }
42
43 return msg;
44}
45
46export function logDone(message: string, ...args: Array<string | number | boolean>) {
47 const msg = format(message, ...args);

Callers 2

verboseFunction · 0.90
logFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected