(...args: any[])
| 21 | } |
| 22 | |
| 23 | export function error(...args: any[]) { |
| 24 | console.output({ |
| 25 | items: args, |
| 26 | level: "error", |
| 27 | skipCallers: 1, |
| 28 | }) |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Lower level output function providing more controls than the simpler log/warn/error functions |
no outgoing calls
no test coverage detected