Skip to content

Commit 4d27d3c

Browse files
authored
Disambiguate error message (#20329)
Change the error message to a unique statement so we can easier trace error messages to the originating line of code.
1 parent 6a1111a commit 4d27d3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/supervisor/pkg/supervisor/supervisor.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1007,7 +1007,7 @@ func launchIDE(cfg *Config, ideConfig *IDEConfig, cmd *exec.Cmd, ideStopped chan
10071007

10081008
ideWasReady, _ := ideReady.Get()
10091009
if !ideWasReady {
1010-
log.WithField("ide", ide.String()).WithError(err).Fatal("IDE failed to start")
1010+
log.WithField("ide", ide.String()).WithError(err).Fatal("IDE failed before becoming ready")
10111011
return
10121012
}
10131013
}

0 commit comments

Comments
 (0)