wangshan 9 mesi fa
parent
commit
f755800770
1 ha cambiato i file con 0 aggiunte e 2 eliminazioni
  1. 0 2
      src/jfw/modules/weixin/src/wx/scanReplayStream.go

+ 0 - 2
src/jfw/modules/weixin/src/wx/scanReplayStream.go

@@ -42,7 +42,6 @@ func ScanReplayStream(w ResponseWriter, openId, code string, action int) error {
 	if err := g.Cfg("reply").MustGet(context.TODO(), "stream").Struct(&arr); err != nil {
 		return err
 	}
-	log.Println(code, "arr:", arr)
 	for _, task := range arr {
 		//校验类型
 		if !(task.Action == 0 || task.Action == action) {
@@ -71,7 +70,6 @@ func ScanReplayStream(w ResponseWriter, openId, code string, action int) error {
 				sendErr = w.PostImage(mid)
 			}
 		case "TEXT":
-			log.Println("----task.Desc----:", task.Desc)
 			if task.Desc != "" {
 				sendErr = w.PostText(task.Desc)
 			}