@@ -142,7 +142,7 @@ func (s *Server) Register(path string, hook http.Handler) {
142
142
s .WebhookMux .Handle (path , metrics .InstrumentedHook (path , hook ))
143
143
144
144
regLog := log .WithValues ("path" , path )
145
- regLog .Info ("registering webhook" )
145
+ regLog .Info ("Registering webhook" )
146
146
147
147
// we've already been "started", inject dependencies here.
148
148
// Otherwise, InjectFunc will do this for us later.
@@ -210,7 +210,7 @@ func (s *Server) Start(ctx context.Context) error {
210
210
s .defaultingOnce .Do (s .setDefaults )
211
211
212
212
baseHookLog := log .WithName ("webhooks" )
213
- baseHookLog .Info ("starting webhook server" )
213
+ baseHookLog .Info ("Starting webhook server" )
214
214
215
215
certPath := filepath .Join (s .CertDir , s .CertName )
216
216
keyPath := filepath .Join (s .CertDir , s .KeyName )
@@ -259,7 +259,7 @@ func (s *Server) Start(ctx context.Context) error {
259
259
return err
260
260
}
261
261
262
- log .Info ("serving webhook server" , "host" , s .Host , "port" , s .Port )
262
+ log .Info ("Serving webhook server" , "host" , s .Host , "port" , s .Port )
263
263
264
264
srv := & http.Server {
265
265
Handler : s .WebhookMux ,
0 commit comments