From 6445d8894a45f175960c31cd22c1d812c613ef1f Mon Sep 17 00:00:00 2001 From: Claus Lohmar Date: Mon, 27 Jul 2026 10:43:10 +0000 Subject: [PATCH] fix: add debug logging for pvesm config per-pool to trace why images filter excludes pools --- backend/app.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/backend/app.py b/backend/app.py index 1323a18..572c0e5 100644 --- a/backend/app.py +++ b/backend/app.py @@ -119,8 +119,9 @@ def storage_pools(): for cl in cp.stdout.split("\n"): if cl.strip().startswith("content"): content = cl.strip().split(None, 1)[1] if len(cl.strip().split(None, 1)) > 1 else "" - except Exception: - pass + logger.info(" pool %s (%s) content=%r", name, stype, content) + except Exception as exc: + logger.warning(" pvesm config %s failed: %s", name, exc) if "images" not in content: continue result.append({"name": name, "type": stype})