(
message: ParameterizedString,
attributes?: Log['attributes'],
{ scope }: CaptureLogMetadata = {},
)
| 236 | * ``` |
| 237 | */ |
| 238 | export function fatal( |
| 239 | message: ParameterizedString, |
| 240 | attributes?: Log['attributes'], |
| 241 | { scope }: CaptureLogMetadata = {}, |
| 242 | ): void { |
| 243 | captureLog('fatal', message, attributes, scope); |
| 244 | } |
| 245 | |
| 246 | export { fmt } from '../utils/parameterize'; |
nothing calls this directly
no test coverage detected