Remove debug print.

This commit is contained in:
Mariano Cano 2019-07-30 16:56:30 -07:00
parent ad91842d06
commit 780eeb5487

View file

@ -95,7 +95,6 @@ func (o SSHOptions) match(got SSHOptions) error {
if !o.ValidBefore.IsZero() && !got.ValidBefore.IsZero() && !o.ValidBefore.Equal(&got.ValidBefore) {
return errors.Errorf("ssh certificate valid before does not match - got %v, want %v", got.ValidBefore, o.ValidBefore)
}
fmt.Printf("want %+v\ngot %+v\n", o, got)
return nil
}