#47 make ui mobilre friendly
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 1m20s

This commit is contained in:
Tim
2024-07-31 10:54:19 +02:00
parent a7d79a3537
commit ad2f1479a4
7 changed files with 82 additions and 64 deletions

View File

@@ -25,6 +25,6 @@ func Logging(next http.Handler) http.Handler {
StatusCode: http.StatusOK,
}
next.ServeHTTP(wrapped, r)
log.Println(wrapped.StatusCode, r.Method, r.URL.Path, time.Since(start))
log.Println(r.RemoteAddr, wrapped.StatusCode, r.Method, r.URL.Path, time.Since(start))
})
}