From c199e2689608b693a4d3408b8bd66e4a9bc63858 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 25 Oct 2024 16:25:29 +0800 Subject: [PATCH] bugfix --- appPublic/registerfunction.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appPublic/registerfunction.py b/appPublic/registerfunction.py index 63242b6..068ed06 100755 --- a/appPublic/registerfunction.py +++ b/appPublic/registerfunction.py @@ -22,10 +22,10 @@ class RegisterFunction: async def exe(self, name, *args, **kw): f = self.get(name) if f is None: - error(f'{name=} function not registed') + # error(f'{name=} function not registed') return None if iscoroutinefunction(f): - info(f'{name=} is coroutine function'); + # info(f'{name=} is coroutine function'); return await f(*args, **kw) return f(*args, **kw)