tcp server 用于给andriod 客户端定时发送消息
龙赣华
2019-05-28 e4c6d8bfcf5c698a459188fdc3d5aac95e451fa9
log/log.go
@@ -21,7 +21,7 @@
      return Log
   }
   infopath := "log/log_record/info.log"
   infopath := "logs/info.log"
   infowriter, _ := rotatelogs.New(
      infopath+".%Y%m%d%H%M",
      rotatelogs.WithLinkName(infopath),
@@ -29,7 +29,7 @@
      rotatelogs.WithRotationTime(24*time.Hour),
   )
   errorpath := "log/log_record/error.log"
   errorpath := "logs/error.log"
   errorwriter, _ := rotatelogs.New(
      errorpath+".%Y%m%d%H%M",
      rotatelogs.WithLinkName(errorpath),