Skip to content

Commit

Permalink
newt: Switch resolution warnings from debug to warn log lvl
Browse files Browse the repository at this point in the history
Now newt warns about undefined settings on default
  • Loading branch information
m-gorecki committed Dec 20, 2024
1 parent 16449ee commit a62659a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion newt/builder/targetbuild.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ func (t *TargetBuilder) validateAndWriteCfg() error {

warningText := strings.TrimSpace(t.res.WarningText())
if warningText != "" {
log.Debug(warningText)
log.Warn(warningText)
}

for _, line := range t.res.DeprecatedWarning() {
Expand Down

0 comments on commit a62659a

Please sign in to comment.