From 44e864030da4f0891da4b96fa9065e1928842194 Mon Sep 17 00:00:00 2001 From: max furman Date: Mon, 16 Sep 2019 10:41:26 -0700 Subject: [PATCH] Remove debug logging --- authority/provisioner/collection.go | 1 - 1 file changed, 1 deletion(-) diff --git a/authority/provisioner/collection.go b/authority/provisioner/collection.go index f674bae8..906c5260 100644 --- a/authority/provisioner/collection.go +++ b/authority/provisioner/collection.go @@ -154,7 +154,6 @@ func (c *Collection) LoadEncryptedKey(keyID string) (string, bool) { // Store adds a provisioner to the collection and enforces the uniqueness of // provisioner IDs. func (c *Collection) Store(p Interface) error { - fmt.Printf("p.GetID() = %+v\n", p.GetID()) // Store provisioner always in byID. ID must be unique. if _, loaded := c.byID.LoadOrStore(p.GetID(), p); loaded { return errors.New("cannot add multiple provisioners with the same id")