From d431ceee250a8079c72a10dee032d4113a879a8f Mon Sep 17 00:00:00 2001 From: Nishant Das Date: Wed, 24 Aug 2022 21:16:48 +0800 Subject: [PATCH] Improve Logging When Parsing JWT Secret (#11300) * remove all references * remove warning --- cmd/beacon-chain/execution/options.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/beacon-chain/execution/options.go b/cmd/beacon-chain/execution/options.go index d54ba8ac9b..a53981125a 100644 --- a/cmd/beacon-chain/execution/options.go +++ b/cmd/beacon-chain/execution/options.go @@ -61,6 +61,7 @@ func parseJWTSecretFromFile(c *cli.Context) ([]byte, error) { if len(secret) < 32 { return nil, errors.New("provided JWT secret should be a hex string of at least 32 bytes") } + log.Infof("Finished reading JWT secret from %s", jwtSecretFile) return secret, nil }