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.
2 parents f6ce353 + 35a0d77 commit 53902f0Copy full SHA for 53902f0
pkg/machine/machine.go
@@ -12,6 +12,7 @@ import (
12
"connectrpc.com/connect"
13
"github.com/depot/cli/pkg/api"
14
"github.com/depot/cli/pkg/cleanup"
15
+ "github.com/depot/cli/pkg/debuglog"
16
"github.com/depot/cli/pkg/helpers"
17
cliv1 "github.com/depot/cli/pkg/proto/depot/cli/v1"
18
"github.com/depot/cli/pkg/proto/depot/cli/v1/cliv1connect"
@@ -128,7 +129,7 @@ func (m *Machine) ReportHealth() error {
128
129
if errors.Is(err, context.Canceled) {
130
return nil
131
}
- fmt.Printf("error reporting health: %s", err.Error())
132
+ debuglog.Log("ReportHealth() error reporting health: %s", err.Error())
133
client = api.NewBuildClient()
134
135
0 commit comments