From c3abceac5d57e5bc4fba3e0e66bcb480dac427f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Pant=C5=AF=C4=8Dek?= Date: Sat, 12 Jul 2025 17:33:28 +0200 Subject: [PATCH] gui: try logging acct in acct_map better --- brmbar3/brmbar-gui-qt4.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/brmbar3/brmbar-gui-qt4.py b/brmbar3/brmbar-gui-qt4.py index dea0807..8f06882 100755 --- a/brmbar3/brmbar-gui-qt4.py +++ b/brmbar3/brmbar-gui-qt4.py @@ -65,9 +65,10 @@ class ShopAdapter(QtCore.QObject): return map def acct_map(self, acct): - logger.debug("acct_map: acct=%s", acct) if acct is None: + logger.debug("acct_map: acct is None") return None + logger.debug("acct_map: acct.acctype=%s", acct.acctype) if acct.acctype == 'debt': return self.acct_debt_map(acct) elif acct.acctype == "inventory":