(
message: ParameterizedString,
attributes?: Log['attributes'],
{ scope }: CaptureLogMetadata = {},
)
| 126 | * ``` |
| 127 | */ |
| 128 | export function info( |
| 129 | message: ParameterizedString, |
| 130 | attributes?: Log['attributes'], |
| 131 | { scope }: CaptureLogMetadata = {}, |
| 132 | ): void { |
| 133 | captureLog('info', message, attributes, scope); |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * @summary Capture a log with the `warn` level. Requires the `enableLogs` option to be enabled. |
nothing calls this directly
no test coverage detected