We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d52614 commit 2ac3d71Copy full SHA for 2ac3d71
components/supervisor/pkg/supervisor/supervisor.go
@@ -150,6 +150,7 @@ func (s IDEKind) String() string {
150
151
// Run serves as main entrypoint to the supervisor.
152
func Run(options ...RunOption) {
153
+ log.Info("supervisor run")
154
exitCode := 0
155
defer handleExit(&exitCode)
156
@@ -236,6 +237,7 @@ func Run(options ...RunOption) {
236
237
}
238
tokenService.provider[KindGit] = []tokenProvider{NewGitTokenProvider(gitpodService, cfg.WorkspaceConfig, notificationService)}
239
240
+ log.Info("gitpodConfigService")
241
gitpodConfigService := config.NewConfigService(cfg.RepoRoot+"/.gitpod.yml", cstate.ContentReady(), log.Log)
242
go gitpodConfigService.Watch(ctx)
243
0 commit comments