Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/opencode/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ let cli = yargs(hideBin(process.argv))
// altimate_change start - telemetry init
// Initialize telemetry early so events from MCP, engine, auth are captured.
// init() is idempotent — safe to call again later in session prompt.
Telemetry.init().catch(() => {})
Telemetry.init().catch((e) => Log.Default.warn("Telemetry initialization failed", { error: String(e) }))
// altimate_change end

// altimate_change start - welcome banner on first run after install/upgrade
Expand Down
Loading