(
message: ParameterizedString,
attributes?: Log['attributes'],
{ scope }: CaptureLogMetadata = {},
)
| 56 | * ``` |
| 57 | */ |
| 58 | export function trace( |
| 59 | message: ParameterizedString, |
| 60 | attributes?: Log['attributes'], |
| 61 | { scope }: CaptureLogMetadata = {}, |
| 62 | ): void { |
| 63 | captureLog('trace', message, attributes, scope); |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * @summary Capture a log with the `debug` level. Requires the `enableLogs` option to be enabled. |
nothing calls this directly
no test coverage detected