Browse Source

rmv prints

Josh Yan 10 months ago
parent
commit
bc3f59a6ad
1 changed files with 0 additions and 2 deletions
  1. 0 2
      server/routes.go

+ 0 - 2
server/routes.go

@@ -769,13 +769,11 @@ func (s *Server) CreateBlobHandler(c *gin.Context) {
 		}
 	}
 
-	fmt.Println("path2", c.Param("digest"))
 	path, err := GetBlobsPath(c.Param("digest"))
 	if err != nil {
 		c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": err.Error()})
 		return
 	}
-	fmt.Println("path1", path)
 	_, err = os.Stat(path)
 	switch {
 	case errors.Is(err, os.ErrNotExist):