Fix typo in script environment variable

This commit is contained in:
Andrew Ayer 2023-02-05 07:56:42 -05:00
parent 3ccc8d67f4
commit 05bf3d0c62
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ type malformedLogEntry struct {
func (malformed *malformedLogEntry) Environ() []string { func (malformed *malformedLogEntry) Environ() []string {
return []string{ return []string{
"EVENT=discovered_cert", "EVENT=malformed_cert",
"SUMMARY=" + fmt.Sprintf("unable to parse entry %d in %s", malformed.Entry.Index, malformed.Entry.Log.URL), "SUMMARY=" + fmt.Sprintf("unable to parse entry %d in %s", malformed.Entry.Index, malformed.Entry.Log.URL),
"LOG_URI=" + malformed.Entry.Log.URL, "LOG_URI=" + malformed.Entry.Log.URL,
"ENTRY_INDEX=" + fmt.Sprint(malformed.Entry.Index), "ENTRY_INDEX=" + fmt.Sprint(malformed.Entry.Index),