“f444865bde167e4396f70627915f859430e7b157”上不存在“develop/doc/api/v2/fluid/layers.html”
提交 ccb4ecef 编写于 作者: B barrierye

bug fix

上级 44a89e75
...@@ -184,7 +184,7 @@ class Op(object): ...@@ -184,7 +184,7 @@ class Op(object):
try: try:
self.init_op() self.init_op()
except Exception as e: except Exception as e:
_LOGGER.error(log(e)) _LOGGER.error(e)
os._exit(-1) os._exit(-1)
threads = [] threads = []
...@@ -413,7 +413,7 @@ class RequestOp(Op): ...@@ -413,7 +413,7 @@ class RequestOp(Op):
try: try:
self.init_op() self.init_op()
except Exception as e: except Exception as e:
_LOGGER.error(log(e)) _LOGGER.error(e)
os._exit(-1) os._exit(-1)
def unpack_request_package(self, request): def unpack_request_package(self, request):
...@@ -438,7 +438,7 @@ class ResponseOp(Op): ...@@ -438,7 +438,7 @@ class ResponseOp(Op):
try: try:
self.init_op() self.init_op()
except Exception as e: except Exception as e:
_LOGGER.error(log(e)) _LOGGER.error(e)
os._exit(-1) os._exit(-1)
def pack_response_package(self, channeldata): def pack_response_package(self, channeldata):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册