From a9501856eae2b2d2e66a1814ab16e75ca7bd1163 Mon Sep 17 00:00:00 2001 From: gazebo Date: Wed, 13 Mar 2019 18:18:34 +0800 Subject: [PATCH] - don't print warning when LoadOrder2 failed in OnOrderComments --- business/jxcallback/orderman/oder_comment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/business/jxcallback/orderman/oder_comment.go b/business/jxcallback/orderman/oder_comment.go index e2f2eeb3f..1028b2c4b 100644 --- a/business/jxcallback/orderman/oder_comment.go +++ b/business/jxcallback/orderman/oder_comment.go @@ -77,7 +77,7 @@ func (c *OrderManager) OnOrderComments(orderCommentList []*model.OrderComment) ( if order, err = partner.CurOrderManager.LoadOrder2(orderComment.VendorOrderID, model.VendorIDEBAI); err == nil { orderComment.VendorOrderID = order.VendorOrderID } else { - globals.SugarLogger.Warnf("OnOrderComments, load orderID:%s failed", orderComment.VendorOrderID) + // globals.SugarLogger.Warnf("OnOrderComments, load orderID:%s failed", orderComment.VendorOrderID) continue } }