From 414ee413eddfc519da8d027e924a5b54faf6f642 Mon Sep 17 00:00:00 2001 From: Akashdeep Dhar Date: Wed, 19 Jul 2023 09:44:28 +0530 Subject: [PATCH] Lower the severity of logging for package mismatch in KOJI branch Signed-off-by: Akashdeep Dhar --- mdapi/database/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mdapi/database/base.py b/mdapi/database/base.py index 628fef9..b58ceee 100644 --- a/mdapi/database/base.py +++ b/mdapi/database/base.py @@ -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()