Skip to content

Commit

Permalink
improve log message on ignoring missing schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
emirozer committed Jul 1, 2019
1 parent 81733bf commit dd2904c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubeval/kubeval.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func validateResource(data []byte, fileName string, schemaCache map[string]*gojs
var spec interface{}
result := ValidationResult{}
if IgnoreMissingSchemas {
log.Warn("Skipping missing schema validation!")
log.Warn("Warning: Set to ignore missing schemas!")
}
result.FileName = fileName
err := yaml.Unmarshal(data, &spec)
Expand Down

0 comments on commit dd2904c

Please sign in to comment.