Include log URI in error messages

This commit is contained in:
Andrew Ayer 2016-02-05 07:47:42 -08:00
parent 1b17c25747
commit 678e8bddc8
1 changed files with 2 additions and 2 deletions

View File

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