Function
logVerbose
(message: string, ...args: Array<string | number | boolean>)
Source from the content-addressed store, hash-verified
| 34 | } |
| 35 | |
| 36 | export 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 | |
| 46 | export function logDone(message: string, ...args: Array<string | number | boolean>) { |
| 47 | const msg = format(message, ...args); |
Tested by
no test coverage detected