(
message: ParameterizedString,
attributes?: Log['attributes'],
{ scope }: CaptureLogMetadata = {},
)
| 162 | * ``` |
| 163 | */ |
| 164 | export function warn( |
| 165 | message: ParameterizedString, |
| 166 | attributes?: Log['attributes'], |
| 167 | { scope }: CaptureLogMetadata = {}, |
| 168 | ): void { |
| 169 | captureLog('warn', message, attributes, scope); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * @summary Capture a log with the `error` level. Requires the `enableLogs` option to be enabled. |
nothing calls this directly
no test coverage detected