frontend: add request logging
This commit is contained in:
parent
df425a07c6
commit
93f03bfe4e
@ -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))
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user