1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-27 04:38:36 +00:00
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)
}
}