Skip to content

Commit

Permalink
Merge pull request #198 from fedora-infra/lowesvrt
Browse files Browse the repository at this point in the history
Lower the severity of logging for package mismatch in KOJI branch
  • Loading branch information
gridhead authored Jul 19, 2023
2 parents a9478f7 + 414ee41 commit fe39071
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mdapi/database/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ def obtain_all_rows(self, location, tableobj, cacheobj):
if rowe[0] in cacheobj:
yield (cacheobj[rowe[0]], *rowe[1:])
else:
servlogr.logrobjc.warning(
servlogr.logrobjc.debug(
"[%s] %s does not appear in the %s cache for %s"
% (self.name, rowe[0], tableobj, location)
)
servlogr.logrobjc.warning("[%s] Dropping from comparison" % self.name)
servlogr.logrobjc.debug("[%s] Dropping from comparison" % self.name)
else:
yield rowe
connobjc.close()
Expand Down

0 comments on commit fe39071

Please sign in to comment.