diff --git a/app/mix/service/utilservice.go b/app/mix/service/utilservice.go index 7bb5cf1f..fc37b0a8 100644 --- a/app/mix/service/utilservice.go +++ b/app/mix/service/utilservice.go @@ -2364,7 +2364,12 @@ func (s *Service) utilBuildInwardHyperLink(ctx *gin.Context, frontendRouteId int } func (s *Service) utilIncrUrc(mid, nType, incr int64) error { - logger.Info("increasing urc_%v_%v by %v records", mid, nType, incr) + + if incr == 0 { + return nil + } + + logger.Info("increasing urc_%v_%v by %v records, time: %v", mid, nType, incr, util.FormatTs(time.Now().Unix(), "2006年1月2日 15时04分05秒")) _, err := redis.GetRedisClient().IncrBy(util.GetNotifUrcIdForRedis(mid, nType), incr) if err != nil { logger.Error("Redis IncrBy fail, err: %v", err) @@ -2379,7 +2384,12 @@ func (s *Service) utilIncrUrc(mid, nType, incr int64) error { } func (s *Service) utilDecrUrc(mid, nType, incr int64) error { - logger.Info("decreasing urc_%v_%v by %v records", mid, nType, incr) + + if incr == 0 { + return nil + } + + logger.Info("decreasing urc_%v_%v by %v records, time: %v", mid, nType, incr, util.FormatTs(time.Now().Unix(), "2006年1月2日 15时04分05秒")) _, err := redis.GetRedisClient().DecrBy(util.GetNotifUrcIdForRedis(mid, nType), incr) if err != nil { logger.Error("Redis DecrBy fail, err: %v", err)