diff --git a/pkg/transport/listener.go b/pkg/transport/listener.go index d8424bed7..8f29064cc 100644 --- a/pkg/transport/listener.go +++ b/pkg/transport/listener.go @@ -78,7 +78,7 @@ type TLSInfo struct { } func (info TLSInfo) String() string { - return fmt.Sprintf("cert = %s, key = %s, ca = %s, trusted-ca = %s", info.CertFile, info.KeyFile, info.CAFile, info.TrustedCAFile) + return fmt.Sprintf("cert = %s, key = %s, ca = %s, trusted-ca = %s, client-cert-auth = %v", info.CertFile, info.KeyFile, info.CAFile, info.TrustedCAFile, info.ClientCertAuth) } func (info TLSInfo) Empty() bool {