Skip to content

Commit

Permalink
chore: change log level for multirm messages [RM-125] (#9080)
Browse files Browse the repository at this point in the history
  • Loading branch information
carolinaecalderon authored Apr 1, 2024
1 parent 0099f4e commit a3834ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions master/internal/rm/multirm/multirm.go
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ func (m *MultiRMRouter) DisableSlot(req *apiv1.DisableSlotRequest) (*apiv1.Disab
func (m *MultiRMRouter) getRM(rpName rm.ResourcePoolName) (string, error) {
// If not given RP name, route to default RM.
if rpName == "" {
m.syslog.Infof("RM undefined, routing to default resource manager")
m.syslog.Debugf("RM undefined, routing to default resource manager")
return m.defaultRMName, nil
}

Expand All @@ -389,7 +389,7 @@ func (m *MultiRMRouter) getRM(rpName rm.ResourcePoolName) (string, error) {
}
for _, p := range rps.ResourcePools {
if p.Name == rpName.String() {
m.syslog.Infof("RM defined as %s, %s", name, p.Name)
m.syslog.Debugf("RM defined as %s, %s", name, p.Name)
return name, nil
}
}
Expand Down

0 comments on commit a3834ac

Please sign in to comment.