@@ -72,13 +72,14 @@ func getRuntimeService(_ *cli.Context, timeout time.Duration) (res internalapi.R
72
72
if RuntimeEndpointIsSet && RuntimeEndpoint == "" {
73
73
return nil , errors .New ("--runtime-endpoint is not set" )
74
74
}
75
- logrus .Debug ("get runtime connection" )
75
+ logrus .Debug ("Get runtime connection" )
76
76
77
77
// Check if a custom timeout is provided.
78
78
t := Timeout
79
79
if timeout != 0 {
80
80
t = timeout
81
81
}
82
+ logrus .Debugf ("Using runtime connection timeout: %v" , t )
82
83
83
84
// Use the noop tracer provider and not tracerProvider directly, otherwise
84
85
// we'll panic in the unary call interceptor
@@ -124,7 +125,7 @@ func getImageService(*cli.Context) (res internalapi.ImageManagerService, err err
124
125
ImageEndpointIsSet = RuntimeEndpointIsSet
125
126
}
126
127
127
- logrus .Debugf ( "get image connection" )
128
+ logrus .Debug ( "Get image connection" )
128
129
129
130
// Use the noop tracer provider and not tracerProvider directly, otherwise
130
131
// we'll panic in the unary call interceptor
@@ -137,7 +138,7 @@ func getImageService(*cli.Context) (res internalapi.ImageManagerService, err err
137
138
138
139
// If no EP set then use the default endpoint types
139
140
if ! ImageEndpointIsSet {
140
- logrus .Warningf ("image connect using default endpoints: %v. " +
141
+ logrus .Warningf ("Image connect using default endpoints: %v. " +
141
142
"As the default settings are now deprecated, you should set the " +
142
143
"endpoint instead." , defaultRuntimeEndpoints )
143
144
logrus .Debug ("Note that performance maybe affected as each default " +
0 commit comments