(value: string)
| 181 | { annotations, cause, date, fiberId, logLevel, message, spans }: Logger.Logger.Options<unknown> |
| 182 | ): string => { |
| 183 | const formatValue = (value: string): string => value.match(textOnly) ? value : quoteValue(value) |
| 184 | const format = (label: string, value: string): string => `${logSpan_.formatLabel(label)}=${formatValue(value)}` |
| 185 | const append = (label: string, value: string): string => " " + format(label, value) |
| 186 |