瀏覽代碼

trying to fix a bug

digital 8 年之前
父節點
當前提交
ce1a9d2684
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      network/__init__.py

+ 1 - 1
network/__init__.py

@@ -230,7 +230,7 @@ class Server(object):
             try:
                 if async_:
                     coro = func(*args,**kwargs)
-                    await coro
+                    lserver.debug("{} {}".format(func,coro))
                 else:
                     func(*args,**kwargs)
             except Exception as exc: