frontend: add request logging

This commit is contained in:
Lan Tian 2020-06-01 23:05:08 +08:00
parent df425a07c6
commit 93f03bfe4e
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22

View File

@ -4,7 +4,10 @@ import (
"fmt" "fmt"
"html" "html"
"net/http" "net/http"
"os"
"strings" "strings"
"github.com/gorilla/handlers"
) )
func webHandlerWhois(w http.ResponseWriter, r *http.Request) { func webHandlerWhois(w http.ResponseWriter, r *http.Request) {
@ -145,5 +148,5 @@ func webServerStart() {
http.HandleFunc("/whois/", webHandlerWhois) http.HandleFunc("/whois/", webHandlerWhois)
http.HandleFunc("/redir", webHandlerNavbarFormRedirect) http.HandleFunc("/redir", webHandlerNavbarFormRedirect)
http.HandleFunc("/telegram/", webHandlerTelegramBot) http.HandleFunc("/telegram/", webHandlerTelegramBot)
http.ListenAndServe(setting.listen, nil) http.ListenAndServe(setting.listen, handlers.LoggingHandler(os.Stdout, http.DefaultServeMux))
} }