From ab8b20fb7de496bd93e93161d657f899b7d0993a Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Thu, 13 Aug 2020 19:05:40 +0200 Subject: [PATCH] debug out for find packages --- master.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master.py b/master.py index 107ff90..641c32d 100644 --- a/master.py +++ b/master.py @@ -35,7 +35,7 @@ def already_running(): def find_all_files_for_pkg(name, repo): searchpath = os.path.join(config["basedir"]["repo"], repo, "os", config["arch"]) + "/" + name + "/*.pkg.*" - # logging.debug("Search for packages with %s", searchpath) + logging.debug("[REPO] Search for package %s (path=%s)", name, searchpath) pkgs = glob.glob(searchpath) return pkgs