Commit 13427da945b73fb61fd8fe1581f9e5c77d6c72c0

Authored by 陆恒
1 parent 78e1f2ac
Exists in master

提交

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/HttpServer/logic/httpserver.go
... ... @@ -139,7 +139,7 @@ func Savadata(w http.ResponseWriter, r *http.Request) {
139 139 r.Body.Close()
140 140  
141 141 s := string(result)
142   - logger.Info("Savadata , body:%v,uuid=%v", s, Uuid)
  142 + //logger.Info("Savadata , body:%v,uuid=%v", s, Uuid)
143 143  
144 144 HandlerSavadata(w, s, Uuid)
145 145 }
... ... @@ -160,7 +160,7 @@ func Getdata(w http.ResponseWriter, r *http.Request) {
160 160 r.Body.Close()
161 161  
162 162 s := string(result)
163   - logger.Info("Getdata , body:%v,uuid=%v", s, Uuid)
  163 + //logger.Info("Getdata , body:%v,uuid=%v", s, Uuid)
164 164  
165 165 HandlerGetdata(w, s, Uuid)
166 166 }
... ...