From b95795d8c74f04945227524b8336ff91277d753a Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Sat, 19 Oct 2024 21:42:17 +0300 Subject: backend: actually fix download demo --- backend/handlers/record.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'backend/handlers/record.go') diff --git a/backend/handlers/record.go b/backend/handlers/record.go index 25d0509..9b8e207 100644 --- a/backend/handlers/record.go +++ b/backend/handlers/record.go @@ -376,10 +376,6 @@ func DownloadDemoWithID(c *gin.Context) { c.JSON(http.StatusOK, models.ErrorResponse(err.Error())) return } - log.Printf("found %d files", len(fileList.Files)) - for _, f := range fileList.Files { - log.Printf("%+v", f) - } if len(fileList.Files) == 0 { c.JSON(http.StatusOK, models.ErrorResponse("Demo not found.")) return -- cgit v1.2.3