Decrease log severity of non-fatal parse errors

These errors are for things like unhandled critical extensions.  The cert
is still processed, so it's not such a bad thing.
This commit is contained in:
Andrew Ayer 2016-02-05 07:45:49 -08:00
parent 3f596730a0
commit 1b17c25747
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ func (s *Scanner) handleParseEntryError(err error, entryType ct.LogEntryType, in
case x509.NonFatalErrors:
s.entriesWithNonFatalErrors++
// We'll make a note, but continue.
s.Warn(fmt.Sprintf("Non-fatal error in %+v at index %d: %s", entryType, index, err.Error()))
s.Log(fmt.Sprintf("Non-fatal error in %+v at index %d: %s", entryType, index, err.Error()))
default:
s.unparsableEntries++
s.Warn(fmt.Sprintf("Failed to parse in %+v at index %d : %s", entryType, index, err.Error()))