#47 make ui mobilre friendly

This commit is contained in:
2024-07-31 10:54:19 +02:00
parent bf2d53c8c4
commit 4bb91a6e3c
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))
})
}