Skip to content

Commit

Permalink
update debug log in serveHTTP()
Browse files Browse the repository at this point in the history
  • Loading branch information
m3ng9i committed Aug 19, 2021
1 parent fcfc1a1 commit 12806d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (this *RanServer) serveHTTP(w http.ResponseWriter, r *http.Request) {
setCORSHeader(w, r)
}

this.logger.Debugf("#%s: r.URL: [%s]", requestId, r.URL.String())
this.logger.Debugf("#%s: r.URL: [%s], r.URL.Path: [%s]", requestId, r.URL.String(), r.URL.Path)

context, err := newContext(this.config, r)
if err != nil {
Expand Down

0 comments on commit 12806d3

Please sign in to comment.