Skip to content

Commit

Permalink
Fix Error string when gatherer does not exists
Browse files Browse the repository at this point in the history
  • Loading branch information
CDimonaco committed Sep 27, 2022
1 parent 1b71c7e commit ad0d852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/factsengine/gathering.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func gatherFacts(

gatherer, err := manager.GetGatherer(gathererType)
if err != nil {
log.Errorf("Fact gatherer %s does not exist, error: %s", gathererType, err)
log.Errorf("Fact gatherer %s does not exist", gathererType)
continue
}

Expand Down

0 comments on commit ad0d852

Please sign in to comment.