()
| 65 | } |
| 66 | |
| 67 | export(): ExportableLogEvent { |
| 68 | return { |
| 69 | level: this.level, |
| 70 | spanId: `${this.traceId}-${this.spanId}`, |
| 71 | timestamp: instantToHrTime(this.timestamp), |
| 72 | message: this.message, |
| 73 | attributes: serializeExtendedAttributes(this.attributes), |
| 74 | } |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | function serializeExtendedAttributes(attributes: ExtendedAttributes): Attributes { |
no test coverage detected