| 17 | * limitations under the License. |
| 18 | */ |
| 19 | export interface ULog { |
| 20 | accessKeyId: string; |
| 21 | eventType: ULogType; |
| 22 | level: "info" | "error" | "verbose" | "warn"; |
| 23 | message: string; |
| 24 | body?: Record<string, unknown>; |
| 25 | } |
| 26 | |
| 27 | /* |
| 28 | * Copyright (C) 2023 by Fonoster Inc (https://fonoster.com) |
nothing calls this directly
no outgoing calls
no test coverage detected