(...args: CaptureLogArgs)
| 51 | * ``` |
| 52 | */ |
| 53 | export function debug(...args: CaptureLogArgs): void { |
| 54 | captureLog('debug', ...args); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * @summary Capture a log with the `info` level. Requires the `enableLogs` option to be enabled. |
nothing calls this directly
no test coverage detected