Skip to content

v1.1.3 — Fix false 'error' log lines on startup

Choose a tag to compare

@github-actions github-actions released this 08 Jul 15:07
· 4 commits to main since this release

Fixed: 6 false "error" lines on every successful launch

Testers reported seeing errors in Live's Extension Host log on every launch:

```
error: [live-studio]: [LiveStudio] context action registered: AudioTrack
error: [live-studio]: [LiveStudio] context action registered: MidiTrack
error: [live-studio]: [LiveStudio] context action registered: ClipSlot
error: [live-studio]: [LiveStudio] context action registered: AudioClip
error: [live-studio]: [LiveStudio] context action registered: MidiClip
error: [live-studio]: [LiveStudio] context action registered: Scene
```

Nothing was broken. Live tags any console.error() call as error: in its log — and these were purely informational success messages ("this context menu registered fine") that had been logged with the wrong console method. Switched them (plus the "Ready" and "Server on http://..." lines) to console.log(). The two remaining console.error() calls in the codebase are genuine failure paths and were left untouched.

Verified no other misuse exists elsewhere in the codebase, and that the smoke suite has no dependency on this log text.

Verification

299/299 smoke tests, full pipeline (typecheck, build, test) run 3× for stability.