zggsong 2 years ago
parent c960c0f90f
commit 825bf08086

@ -20,7 +20,7 @@ func init() {
// 初始化日志
logger := &lumberjack.Logger{
//Filename: "./Log/Receive_File_Log" + time.Now().Format("20060102_150405") + ".txt",
Filename: "./log/Receive_File_Log.txt",
Filename: "./log/Daily_Report_Log.txt",
MaxSize: 10, // 日志文件大小,单位是 MB
MaxBackups: 3, // 最大过期日志保留个数
MaxAge: 28, // 保留过期文件最大时间,单位 天
@ -62,10 +62,9 @@ func main() {
}
}
//
// chanHandler
// @Description: 信号处理
//
// @Description: 信号处理
func chanHandler() {
for {
select {

@ -80,7 +80,7 @@ https://github.com/zggsong`))
global.GLO_RECV_CHAN <- m
}
w.Write([]byte("服务端接收成功...")) //这个写入到w的是输出到客户端的
w.Write([]byte("success")) //这个写入到w的是输出到客户端的
}
// DeclarationService
@ -120,7 +120,7 @@ func DeclarationService(files map[string]string) {
return
}
if imagesLinks == nil {
err = errors.New("get a link to the images")
err = errors.New(fmt.Sprintf("Get a link to the images"))
log.Errorf(err.Error())
util.SendMessageError(err)
return

Loading…
Cancel
Save