rdluck 4 years ago
parent
commit
2bed809e8c
2 changed files with 3 additions and 2 deletions
  1. 1 0
      services/data_source_longzhong.go
  2. 2 2
      services/task.go

+ 1 - 0
services/data_source_longzhong.go

@@ -629,6 +629,7 @@ func GetLzProductPriceProduct() (err error) {
 			go utils.SendEmail("获取隆众价格指标失败"+time.Now().Format("2006-01-02 15:04:05"), ";Err:"+err.Error(), utils.EmailSendToUsers)
 		}
 		if msg != "" {
+			fmt.Println("msg:",msg)
 			go utils.SendEmail("获取隆众价格指标失败"+time.Now().Format("2006-01-02 15:04:05"), ";msg:"+msg, utils.EmailSendToUsers)
 		}
 	}()

+ 2 - 2
services/task.go

@@ -31,9 +31,9 @@ func Task123() {
 }
 
 func Task() {
-	fmt.Print("start")
+	fmt.Println("start")
 	GetLzProductPriceProduct()
-	fmt.Print("end")
+	fmt.Println("end")
 }
 
 func SendEmail() (err error) {