(...args: CaptureLogArgs)
| 106 | * ``` |
| 107 | */ |
| 108 | export function warn(...args: CaptureLogArgs): void { |
| 109 | captureLog('warn', ...args); |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * @summary Capture a log with the `error` level. Requires the `enableLogs` option to be enabled. |
nothing calls this directly
no test coverage detected