From c3fd31fbfe9296e6128e49fb56bd5637a252a86e Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 13 Aug 2025 13:34:55 +0800 Subject: [PATCH] bugfix --- uapi/appapi.py | 1 + 1 file changed, 1 insertion(+) diff --git a/uapi/appapi.py b/uapi/appapi.py index 6d8d9c6..f30d310 100644 --- a/uapi/appapi.py +++ b/uapi/appapi.py @@ -46,6 +46,7 @@ where a.apisetid = b.apisetid and b.id = ${uappid}$""" recs = await sor.sqlExe(sql, {'upappid': upappid, 'apiname': apiname}) if len(recs) == 0: + debug(f'{upappid=}, {apiname=} uapi not found') return None return recs[0]