diff --git a/internal/certs/validation-sans.go b/internal/certs/validation-sans.go index 5430cb1..4d5b7f0 100644 --- a/internal/certs/validation-sans.go +++ b/internal/certs/validation-sans.go @@ -426,9 +426,14 @@ func (slvr SANsListValidationResult) String() string { slvr.Overview(), ) - if slvr.StatusDetail() != "" { - output += "; " + slvr.StatusDetail() - } + // This is too verbose for "human-readable" format. We can rely on the + // caller to use the StatusDetail() method directly or indirectly via the + // Report() method to obtain this. + // + // + // if slvr.StatusDetail() != "" { + // output += "; " + slvr.StatusDetail() + // } return output