diff --git a/pkg/leakybucket/manager.go b/pkg/leakybucket/manager.go index e742eb835..f23642c87 100644 --- a/pkg/leakybucket/manager.go +++ b/pkg/leakybucket/manager.go @@ -146,7 +146,7 @@ func LoadBuckets(files []string) ([]BucketFactory, chan types.Event, error) { } //check compat if g.FormatVersion == "" { - log.Warningf("no version in %s : %s, assuming '1.0'", g.Name, f) + log.Debugf("no version in %s : %s, assuming '1.0'", g.Name, f) g.FormatVersion = "1.0" } ok, err := cwversion.Statisfies(g.FormatVersion, cwversion.Constraint_scenario) diff --git a/pkg/parser/stage.go b/pkg/parser/stage.go index 4d27da883..fca5cef3c 100644 --- a/pkg/parser/stage.go +++ b/pkg/parser/stage.go @@ -76,7 +76,7 @@ func LoadStages(stageFiles []Stagefile, pctx *UnixParserCtx) ([]Node, error) { //check for empty bucket if node.Name == "" && node.Description == "" && node.Author == "" { - log.Infof("Node has no name,author or description. Skipping.") + log.Infof("Node in %s has no name,author or description. Skipping.", stageFile.Filename) continue } //check compat