From 244baf165cff6aac77bb7fe9b85fe81a9a7cbe39 Mon Sep 17 00:00:00 2001 From: gazebo Date: Mon, 6 May 2019 09:41:25 +0800 Subject: [PATCH] - debug msg --- business/jxcallback/orderman/orderman_ext.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/business/jxcallback/orderman/orderman_ext.go b/business/jxcallback/orderman/orderman_ext.go index 4499a5811..1c223e7fc 100644 --- a/business/jxcallback/orderman/orderman_ext.go +++ b/business/jxcallback/orderman/orderman_ext.go @@ -53,7 +53,7 @@ func (c *OrderManager) GetStoreOrderCountInfo(ctx *jxcontext.Context, storeID st } func (c *OrderManager) GetStoreOrderCountInfo2(ctx *jxcontext.Context, storeID, lastHours int) (countInfo []*model.GoodsOrderCountInfo2, err error) { - globals.SugarLogger.Debugf("GetStoreOrderCountInfo2 storeID:%s", storeID) + globals.SugarLogger.Debugf("GetStoreOrderCountInfo2 storeID:%d", storeID) if lastHours > maxLastHours { lastHours = maxLastHours } else if lastHours == 0 { @@ -72,7 +72,7 @@ func (c *OrderManager) GetStoreOrderCountInfo2(ctx *jxcontext.Context, storeID, if err == nil { return countInfo, nil } - globals.SugarLogger.Infof("GetStoreOrderCountInfo2 storeID:%s failed with error:%v", storeID, err) + globals.SugarLogger.Infof("GetStoreOrderCountInfo2 storeID:%d failed with error:%v", storeID, err) return nil, err }