- don't print warning when LoadOrder2 failed in OnOrderComments

This commit is contained in:
gazebo
2019-03-13 18:18:34 +08:00
parent 8310a0b2cf
commit a9501856ea

View File

@@ -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
}
}