Use consistent case in TLS logging.

This commit is contained in:
Dave Collins 2013-11-19 11:42:56 -06:00
parent 5cd4c8265c
commit c3fab78e2c

View file

@ -399,7 +399,7 @@ func genKey(key, cert string) error {
pem.Encode(keyOut, &pem.Block{Type: "EC PRIVATE KEY", Bytes: keybytes}) pem.Encode(keyOut, &pem.Block{Type: "EC PRIVATE KEY", Bytes: keybytes})
keyOut.Close() keyOut.Close()
log.Infof("RPCS: Done generating tls certificates") log.Infof("RPCS: Done generating TLS certificates")
return nil return nil
} }