Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Update more errors to stderr #546

Merged
merged 1 commit into from
Mar 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading