Skip to content

Commit

Permalink
changed log for TLS files
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverbundalo committed Mar 14, 2024
1 parent 297903e commit f4f5b78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jsonrpc/jsonrpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ func (j *JSONRPC) setupHTTP() error {
}

if j.config.TLSCertFile != "" && j.config.TLSKeyFile != "" {
j.logger.Info("https cert file", j.config.TLSCertFile)
j.logger.Info("https key file", j.config.TLSKeyFile)
j.logger.Info("TLS", "cert file", j.config.TLSCertFile)
j.logger.Info("TLS", "key file", j.config.TLSKeyFile)

go func() {
if err := srv.ServeTLS(lis, j.config.TLSCertFile, j.config.TLSKeyFile); err != nil {
Expand Down

0 comments on commit f4f5b78

Please sign in to comment.