(
message: ParameterizedString,
attributes?: Log['attributes'],
{ scope }: CaptureLogMetadata = {},
)
| 91 | * ``` |
| 92 | */ |
| 93 | export function debug( |
| 94 | message: ParameterizedString, |
| 95 | attributes?: Log['attributes'], |
| 96 | { scope }: CaptureLogMetadata = {}, |
| 97 | ): void { |
| 98 | captureLog('debug', message, attributes, scope); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * @summary Capture a log with the `info` level. Requires the `enableLogs` option to be enabled. |
nothing calls this directly
no test coverage detected