新注册的用户请输入邮箱并保存,随后登录邮箱激活账号。后续可直接使用邮箱登录!

Commit 2196e183 authored by tianle's avatar tianle

Merge branch 'v2.3.1_qc_log_optimize' into 'v2.3.1_qc' (merge request !33)

fix: rm tx type log --bug=0
fix: rm tx type log
--bug=0
parents 5d823605 b2181ba8
......@@ -132,8 +132,7 @@ func (r *RuntimeClient) PutMsgWithNotify(msg *protogo.DockerVMMessage,
// PutMsg put msg to send channel
func (r *RuntimeClient) PutMsg(msg *protogo.DockerVMMessage) {
r.logger.Debugf("put msg to sendMsgCh, txId [%s], msgType [%s], chan len: [%d]",
msg.TxId, msg.Type, len(r.sendMsgCh))
r.logger.Debugf("put msg to sendMsgCh, txId [%s], chan len: [%d]", msg.TxId, len(r.sendMsgCh))
r.sendMsgCh <- msg
}
......
......@@ -92,7 +92,7 @@ func (h *TxHandler) listenPendingQueue() error {
for {
select {
case msg := <-h.pendingQueue:
h.sandboxLogger.Debugf("get msg from pending queue, txId: [%s], msgType: [%s]", msg.TxId, msg.Type)
h.sandboxLogger.Debugf("get msg from pending queue, txId: [%s]", msg.TxId)
if err := h.handleTxRequest(msg); err != nil {
errCh <- err
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment