Skip to content

Commit d0ab5b5

Browse files
committed
fix
1 parent 54b1a34 commit d0ab5b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internals/server/server.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ func Handle() http.Handler {
1414
mux.HandleFunc("/ws", websocketHandler)
1515

1616
final := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
17-
mux.ServeHTTP(w, r)
18-
1917
logger.Info(r.Method, " ", r.URL.Path, " ", r.URL.RawQuery)
18+
19+
mux.ServeHTTP(w, r)
2020
})
2121

2222
return final

0 commit comments

Comments
 (0)