(entry)
| 488 | return artifacts; |
| 489 | } |
| 490 | |
| 491 | function describeTelemetry(entry) { |
| 492 | return truncate( |
| 493 | entry.description || |
| 494 | entry.message || |
| 495 | entry.detail || |
| 496 | entry.target || |
| 497 | entry.status || |
| 498 | entry.reason || |
| 499 | entry.file || |
| 500 | entry.command || |
| 501 | entry.session || |
| 502 | entry.agent || |
| 503 | 'event recorded', |
| 504 | 80 |
| 505 | ); |
| 506 | } |
| 507 | |
| 508 | function eventTimestamp(entry) { |
no test coverage detected