Merge pull request #3096 from philips/tls-info-debug

pkg/transport: include debug output for trusted-ca
This commit is contained in:
Yicheng Qin 2015-08-25 20:08:19 -07:00
commit 6250fed8a8

View File

@ -78,7 +78,7 @@ type TLSInfo struct {
}
func (info TLSInfo) String() string {
return fmt.Sprintf("cert = %s, key = %s, ca = %s", info.CertFile, info.KeyFile, info.CAFile)
return fmt.Sprintf("cert = %s, key = %s, ca = %s, trusted-ca = %s", info.CertFile, info.KeyFile, info.CAFile, info.TrustedCAFile)
}
func (info TLSInfo) Empty() bool {