From 6fd6270e7d5321ef490d3d6177581e163b0ace75 Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Fri, 19 Mar 2021 13:21:14 -0700 Subject: [PATCH] Remove debug statements. --- cas/cloudcas/cloudcas.go | 1 - cas/stepcas/stepcas.go | 1 - 2 files changed, 2 deletions(-) diff --git a/cas/cloudcas/cloudcas.go b/cas/cloudcas/cloudcas.go index 4fb75b3a..695258c9 100644 --- a/cas/cloudcas/cloudcas.go +++ b/cas/cloudcas/cloudcas.go @@ -141,7 +141,6 @@ func (c *CloudCAS) GetCertificateAuthority(req *apiv1.GetCertificateAuthorityReq Name: name, }) if err != nil { - println(name) return nil, errors.Wrap(err, "cloudCAS GetCertificateAuthority failed") } if len(resp.PemCaCertificates) == 0 { diff --git a/cas/stepcas/stepcas.go b/cas/stepcas/stepcas.go index 8b468e25..5cb8fd93 100644 --- a/cas/stepcas/stepcas.go +++ b/cas/stepcas/stepcas.go @@ -211,6 +211,5 @@ func (s *StepCAS) lifetime(d time.Duration) api.TimeDuration { } var td api.TimeDuration td.SetDuration(d) - println(td.String(), d.String()) return td }