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 4d4dbc9 commit 5190b59Copy full SHA for 5190b59
pkg/agent/run.go
@@ -7,6 +7,7 @@ import (
7
"fmt"
8
"io"
9
"io/ioutil"
10
+ "log"
11
"net/http"
12
_ "net/http/pprof"
13
"net/url"
@@ -137,7 +138,7 @@ func Run(cmd *cobra.Command, args []string) {
137
138
go func() {
139
err := preflightClient.(manager.Runnable).Start(ctx)
140
if err != nil {
- log.Fatalf("failed to start a controller-runtime component: %v", err)
141
+ logs.Log.Fatalf("failed to start a controller-runtime component: %v", err)
142
}
143
144
// The agent must stop if the controller-runtime component stops.
0 commit comments