Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrytfleung committed Jul 22, 2024
1 parent f932fd6 commit 4785bd8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func (extension *solarwindsapmSettingsExtension) Start(ctx context.Context, _ co
return err
}
subjects := systemCertPool.Subjects()
extension.logger.Info("Loading system certificates", zap.Int("numberOfSubjects", len(subjects)))
extension.logger.Info("Loading system certificates", zap.Int("numberOfCertificates", len(subjects)))
extension.conn, err = grpc.NewClient(extension.config.Endpoint, grpc.WithTransportCredentials(credentials.NewTLS(&tls.Config{RootCAs: systemCertPool})))
if err != nil {
return err
Expand All @@ -201,6 +201,7 @@ func (extension *solarwindsapmSettingsExtension) Start(ctx context.Context, _ co
}
}()

extension.logger.Info("Started up solarwinds apm settings extension")
return nil
}

Expand Down

0 comments on commit 4785bd8

Please sign in to comment.