From 0f300c3e72791d09a3a7eb0a982e65645ad7d125 Mon Sep 17 00:00:00 2001 From: cangui Date: Thu, 19 Jun 2025 18:05:13 +0200 Subject: [PATCH] up --- internal/route/main.go | 2 ++ 1 file changed, 2 insertions(+) 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)