We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9a6cf3 commit 5458a49Copy full SHA for 5458a49
components/local-app/main.go
@@ -93,7 +93,10 @@ func main() {
93
},
94
95
&cli.BoolFlag{
96
- Name: "verbose",
+ Name: "verbose",
97
+ EnvVars: []string{
98
+ "GITPOD_LCA_VERBOSE",
99
+ },
100
Value: false,
101
102
components/local-app/pkg/bastion/bastion.go
@@ -328,7 +328,7 @@ func (b *Bastion) handleUpdate(ur *WorkspaceUpdateRequest) {
328
var err error
329
ws.supervisorClient, err = grpc.Dial(ws.supervisorListener.LocalAddr, grpc.WithInsecure())
330
if err != nil {
331
- logrus.WithError(err).WithField("workspace", ws.WorkspaceID).Print("error connecting to supervisor")
+ logrus.WithError(err).WithField("workspace", ws.WorkspaceID).Error("error connecting to supervisor")
332
} else {
333
go func() {
334
<-ws.ctx.Done()
0 commit comments