Skip to content

Commit

Permalink
fix error output
Browse files Browse the repository at this point in the history
  • Loading branch information
boyter committed Dec 16, 2021
1 parent c3445c6 commit a8d2b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processor/formatters.go
Expand Up @@ -648,7 +648,7 @@ func fileSummarizeMulti(input chan *FileJob) string {
} else {
err := ioutil.WriteFile(t[1], []byte(val), 0600)
if err != nil {
fmt.Println(fmt.Sprintf("%s unable to be written to for format %s", t[1], t[0]))
fmt.Printf("%s unable to be written to for format %s: %s", t[1], t[0], err)
}
}
}
Expand Down

0 comments on commit a8d2b6a

Please sign in to comment.