Skip to content

Commit

Permalink
fix: info instead of warn for no targets
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneutt committed Aug 16, 2022
1 parent 20517d7 commit e6db038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/dataplane/parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ func getUpstreams(

// warn if an upstream was created with 0 targets
if len(targets) == 0 {
log.WithField("service_name", *service.Name).Warnf("no targets found to create upstream")
log.WithField("service_name", *service.Name).Infof("no targets found to create upstream")
}

// define the upstream including all the newly populated targets
Expand Down

0 comments on commit e6db038

Please sign in to comment.