lower verbosity for this, give context to that
This commit is contained in:
parent
8b6332f950
commit
225c9fe872
2 changed files with 2 additions and 2 deletions
|
@ -146,7 +146,7 @@ func LoadBuckets(files []string) ([]BucketFactory, chan types.Event, error) {
|
||||||
}
|
}
|
||||||
//check compat
|
//check compat
|
||||||
if g.FormatVersion == "" {
|
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"
|
g.FormatVersion = "1.0"
|
||||||
}
|
}
|
||||||
ok, err := cwversion.Statisfies(g.FormatVersion, cwversion.Constraint_scenario)
|
ok, err := cwversion.Statisfies(g.FormatVersion, cwversion.Constraint_scenario)
|
||||||
|
|
|
@ -76,7 +76,7 @@ func LoadStages(stageFiles []Stagefile, pctx *UnixParserCtx) ([]Node, error) {
|
||||||
|
|
||||||
//check for empty bucket
|
//check for empty bucket
|
||||||
if node.Name == "" && node.Description == "" && node.Author == "" {
|
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
|
continue
|
||||||
}
|
}
|
||||||
//check compat
|
//check compat
|
||||||
|
|
Loading…
Add table
Reference in a new issue