Skip to content

Commit

Permalink
Disambiguate error message (#20329)
Browse files Browse the repository at this point in the history
Change the error message to a unique statement so we can easier trace error messages to the originating line of code.
  • Loading branch information
meysholdt authored Oct 29, 2024
1 parent 6a1111a commit 4d27d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/supervisor/pkg/supervisor/supervisor.go
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ func launchIDE(cfg *Config, ideConfig *IDEConfig, cmd *exec.Cmd, ideStopped chan

ideWasReady, _ := ideReady.Get()
if !ideWasReady {
log.WithField("ide", ide.String()).WithError(err).Fatal("IDE failed to start")
log.WithField("ide", ide.String()).WithError(err).Fatal("IDE failed before becoming ready")
return
}
}
Expand Down

0 comments on commit 4d27d3c

Please sign in to comment.