(message: string)
| 108 | } |
| 109 | |
| 110 | private static formatMessage(message: string): Fragment { |
| 111 | return { fmt: '%s', params: [message] } |
| 112 | } |
| 113 | |
| 114 | private static formatAttributes(attributes: Record<string, unknown>): Fragment[] { |
| 115 | return Object.entries(attributes).map(([key, value]) => ({ |