File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,10 @@ func main() {
93
93
},
94
94
},
95
95
& cli.BoolFlag {
96
- Name : "verbose" ,
96
+ Name : "verbose" ,
97
+ EnvVars : []string {
98
+ "GITPOD_LCA_VERBOSE" ,
99
+ },
97
100
Value : false ,
98
101
},
99
102
},
Original file line number Diff line number Diff line change @@ -328,7 +328,7 @@ func (b *Bastion) handleUpdate(ur *WorkspaceUpdateRequest) {
328
328
var err error
329
329
ws .supervisorClient , err = grpc .Dial (ws .supervisorListener .LocalAddr , grpc .WithInsecure ())
330
330
if err != nil {
331
- logrus .WithError (err ).WithField ("workspace" , ws .WorkspaceID ).Print ("error connecting to supervisor" )
331
+ logrus .WithError (err ).WithField ("workspace" , ws .WorkspaceID ).Error ("error connecting to supervisor" )
332
332
} else {
333
333
go func () {
334
334
<- ws .ctx .Done ()
You can’t perform that action at this time.
0 commit comments