summaryrefslogtreecommitdiffstats
path: root/src/software/openlmi/software/yumdb/process.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/software/openlmi/software/yumdb/process.py')
-rw-r--r--src/software/openlmi/software/yumdb/process.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/software/openlmi/software/yumdb/process.py b/src/software/openlmi/software/yumdb/process.py
index cd70407..daef180 100644
--- a/src/software/openlmi/software/yumdb/process.py
+++ b/src/software/openlmi/software/yumdb/process.py
@@ -436,7 +436,10 @@ class YumWorker(Process):
what = 'all'
else:
what = kind
+ _logger().debug("calling YumBase.doPackageLists(%s, showdups=%s)",
+ what, allow_duplicates)
pkglist = self._yum_base.doPackageLists(what, showdups=allow_duplicates)
+ _logger().debug("YumBase.doPackageLists() finished")
if kind == 'all':
result = pkglist.available + pkglist.installed
elif kind == 'available':
@@ -585,6 +588,7 @@ class YumWorker(Process):
except Exception: #pylint: disable=W0703
# logging is not set up but client expects us to work
pass
+ _logger().info("running as pid=%d", self.pid)
_logger().info("starting %s main loop", self.__class__.__name__)
self._pkg_cache = weakref.WeakValueDictionary()
while True: