Ver Fonte

trying to fix a bug

digital há 7 anos atrás
pai
commit
ce1a9d2684
1 ficheiros alterados com 1 adições e 1 exclusões
  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: