From 869fa48d74d0fe9917d2e4270e0a0a21b63fa6ec Mon Sep 17 00:00:00 2001 From: mklee Date: Tue, 22 Aug 2023 18:32:37 +0900 Subject: [PATCH] =?UTF-8?q?Revert=20"[=EC=9D=B4=EB=AF=BC=EA=B6=8C]=20?= =?UTF-8?q?=EC=9E=84=EC=8B=9C=20=EB=A1=9C=EA=B7=B8=20=EC=82=BD=EC=9E=85"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 7470f8e001cf36d8944a0ae6eb4e83554be181d8. --- core/service.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/service.go b/core/service.go index 894c19c..833f802 100644 --- a/core/service.go +++ b/core/service.go @@ -458,7 +458,6 @@ func (sh *serviceDescription) unlink(w http.ResponseWriter, r *http.Request) { return } - logger.Println("accid", authInfo.Accid.String()) accDocs, err := sh.mongoClient.FindAll(CollectionAccount, bson.M{ "accid": authInfo.Accid, }, options.Find().SetProjection(bson.M{ @@ -476,8 +475,6 @@ func (sh *serviceDescription) unlink(w http.ResponseWriter, r *http.Request) { return } - logger.Println("len(accDocs)", len(accDocs), accDocs) - var ids primitive.A for _, accDoc := range accDocs { ids = append(ids, accDoc["_id"].(primitive.ObjectID))