(...args: CaptureLogArgs)
| 134 | * ``` |
| 135 | */ |
| 136 | export function error(...args: CaptureLogArgs): void { |
| 137 | captureLog('error', ...args); |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * @summary Capture a log with the `fatal` level. Requires the `enableLogs` option to be enabled. |
nothing calls this directly
no test coverage detected