Skip to content

Commit

Permalink
🐛 Update more errors to stderr (#546)
Browse files Browse the repository at this point in the history
Signed-off-by: Emily McMullan <[email protected]>
  • Loading branch information
eemcmullan authored Mar 21, 2024
1 parent 2e45db3 commit 1ff278b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/analyzer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,13 @@ func AnalysisCmd() *cobra.Command {
sc := createOpenAPISchema(providers, log)
b, err := json.Marshal(sc)
if err != nil {
log.Error(err, "unable to create inital schema")
errLog.Error(err, "unable to create inital schema")
os.Exit(1)
}

err = os.WriteFile(getOpenAPISpec, b, 0644)
if err != nil {
log.Error(err, "error writing output file", "file", getOpenAPISpec)
errLog.Error(err, "error writing output file", "file", getOpenAPISpec)
os.Exit(1) // Treat the error as a fatal error
}
os.Exit(0)
Expand All @@ -190,7 +190,7 @@ func AnalysisCmd() *cobra.Command {
for _, f := range rulesFile {
internRuleSet, internNeedProviders, err := parser.LoadRules(f)
if err != nil {
log.WithValues("fileName", f).Error(err, "unable to parse all the rules for ruleset")
errLog.Error(err, "unable to parse all the rules for ruleset", "file", f)
}
ruleSets = append(ruleSets, internRuleSet...)
for k, v := range internNeedProviders {
Expand Down

0 comments on commit 1ff278b

Please sign in to comment.