diff --git a/internal/route/main.go b/internal/route/main.go index 1bef013..80e7b56 100644 --- a/internal/route/main.go +++ b/internal/route/main.go @@ -110,6 +110,8 @@ r.PathPrefix("/webdav/").Handler(http.HandlerFunc(func(w http.ResponseWriter, re http.Error(w, "Unauthorized", http.StatusUnauthorized) return } + log.Printf("✅ email saisie: %s", email) + log.Printf("✅ passw saisie: %s", password) var user models.User result := bd.Where("email = ?", email).First(&user)