From: Michael Tremer Date: Tue, 25 Mar 2025 16:02:00 +0000 (+0000) Subject: backend: Send all Pakfire messages up to the logger X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=HEAD;p=people%2Fms%2Fbricklayer.git backend: Send all Pakfire messages up to the logger This allows us to see any Pakfire debugging messages, too. Signed-off-by: Michael Tremer --- diff --git a/src/python/__init__.py b/src/python/__init__.py index c536da8..0c2d7b5 100644 --- a/src/python/__init__.py +++ b/src/python/__init__.py @@ -337,6 +337,9 @@ class Bricklayer(object): """ logger = log.getChild("pakfire") + # Pass up all debugging messages + logger.setLevel(logging.DEBUG) + # Create a new context ctx = pakfire.Ctx()