Remove debug statements.

This commit is contained in:
Mariano Cano 2021-03-19 13:21:14 -07:00
parent 7958f6ebb5
commit 6fd6270e7d
2 changed files with 0 additions and 2 deletions

View file

@ -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 {

View file

@ -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
}