Skip to content

Commit

Permalink
swarm/api/http: change request served msg log level (ethereum#18127)
Browse files Browse the repository at this point in the history
  • Loading branch information
acud authored and nonsense committed Nov 18, 2018
1 parent d136e98 commit 51e2e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swarm/api/http/middleware.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func InitLoggingResponseWriter(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
writer := newLoggingResponseWriter(w)
h.ServeHTTP(writer, r)
log.Debug("request served", "ruid", GetRUID(r.Context()), "code", writer.statusCode)
log.Info("request served", "ruid", GetRUID(r.Context()), "code", writer.statusCode)
})
}

Expand Down

0 comments on commit 51e2e78

Please sign in to comment.