From ac69653301259e885a30596f8cd575638ef6f510 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 13 Aug 2025 13:36:43 +0800 Subject: [PATCH] bugfix --- uapi/appapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uapi/appapi.py b/uapi/appapi.py index f30d310..3461b3d 100644 --- a/uapi/appapi.py +++ b/uapi/appapi.py @@ -46,7 +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') + debug(f'{sql=},{upappid=}, {apiname=} uapi not found') return None return recs[0]