Propagate error in log (#1875)

This commit is contained in:
laurentsimon 2022-04-27 10:41:23 -07:00 committed by GitHub
parent 2b68f38d16
commit 815de5c351
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -158,6 +158,6 @@ func rootCmd(o *options.Options) {
pol,
)
if resultsErr != nil {
log.Panicf("Failed to output results: %v", err)
log.Panicf("Failed to format results: %v", resultsErr)
}
}