From ad0d852ec19bf4f225c2dcbfcd364c96453289b7 Mon Sep 17 00:00:00 2001 From: Carmine Di Monaco Date: Tue, 27 Sep 2022 11:20:30 +0200 Subject: [PATCH] Fix Error string when gatherer does not exists --- internal/factsengine/gathering.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/factsengine/gathering.go b/internal/factsengine/gathering.go index 5541dabd..596177c1 100644 --- a/internal/factsengine/gathering.go +++ b/internal/factsengine/gathering.go @@ -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 }