From c6c14b10372263297a9ca4f03e6f2134c6818605 Mon Sep 17 00:00:00 2001 From: gazebo Date: Mon, 18 Jun 2018 15:26:38 +0800 Subject: [PATCH] - remove a redundant warning log. --- business/jd/controller/order.go | 1 - 1 file changed, 1 deletion(-) diff --git a/business/jd/controller/order.go b/business/jd/controller/order.go index 858c51381..b69c28373 100644 --- a/business/jd/controller/order.go +++ b/business/jd/controller/order.go @@ -84,7 +84,6 @@ func (c *OrderController) OrderStatus(order *jdapi.JDOrderMsg) *jdapi.JDCallback if order.StatusId != jdapi.JdOrderStatusNew && order.StatusId != jdapi.JdOrderStatusAdjust { err := normalOrderStatus(order) if err != nil { - globals.SugarLogger.Warnf("error in OrderStatus, error:%v", err) return &jdapi.JDCallbackResponse{jdapi.JDerrorCodeAccessFailed, err.Error(), ""} } } else {