(phase, key, value)
| 453 | return String(value).replace(/\s+/g, "_"); |
| 454 | } |
| 455 | function vmDiag(phase, key, value) { |
| 456 | if (!VM_DIAG_ENABLED) { |
| 457 | return; |
| 458 | } |
| 459 | vmTrace("DIAG:" + phase + ":" + key + "=" + diagValue(value)); |
| 460 | } |
| 461 | // Always-on lifecycle log — writes to console.log regardless of the |
| 462 | // parparDiag URL flag so a user who reports "stuck on Loading..., no |
| 463 | // console output" can confirm whether the runtime even executed. Kept |
no test coverage detected