From 1b7db6a60b072c8e1fb0639503a3e7ab9664a385 Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Sat, 15 Oct 2016 13:15:32 -0400 Subject: [PATCH] Fix log message when adding a certificate --- upup/pkg/fi/vfs_castore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upup/pkg/fi/vfs_castore.go b/upup/pkg/fi/vfs_castore.go index a79b5b1dbe..f4557677fe 100644 --- a/upup/pkg/fi/vfs_castore.go +++ b/upup/pkg/fi/vfs_castore.go @@ -454,7 +454,7 @@ func (c *VFSCAStore) StoreKeypair(id string, cert *Certificate, privateKey *Priv } func (c *VFSCAStore) AddCert(id string, cert *Certificate) error { - glog.Infof("Issuing new certificate: %q", id) + glog.Infof("Adding TLS certificate: %q", id) // We add with a timestamp of zero so this will never be the newest cert serial := BuildPKISerial(0)