This commit is contained in:
Lunny Xiao 2022-11-17 15:23:39 +08:00 committed by Jason Song
parent 9a45572ce2
commit 110072a8d4

View File

@ -14,7 +14,7 @@ import (
func grpcHandler(h http.Handler) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
log.Trace("protocol version:", r.Proto)
log.Trace("protocol version: %v", r.Proto)
h.ServeHTTP(w, r)
}
}