]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
Log systemd-repart json output at debug level
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 13 Aug 2023 13:54:37 +0000 (15:54 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 13 Aug 2023 13:54:37 +0000 (15:54 +0200)
mkosi/__init__.py

index 23e5a8e3f8c4f22b842328f64b9ab47aa2a7b8bb..2095452c3297abc763b48044bb0243f22e6be499 100644 (file)
@@ -1338,6 +1338,8 @@ def make_image(state: MkosiState, skip: Sequence[str] = [], split: bool = False)
     with complete_step("Generating disk image"):
         output = json.loads(run(cmdline, stdout=subprocess.PIPE, env=env).stdout)
 
+    logging.debug(json.dumps(output, indent=4))
+
     roothash = usrhash = None
     for p in output:
         if (h := p.get("roothash")) is None: