Merge pull request #5456 from chymy/fix-migration-to-structured-logging

fix typo
This commit is contained in:
Kubernetes Prow Robot 2021-02-02 16:30:28 -08:00 committed by GitHub
commit b415c00462
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ func logHTTPRequest(r *http.Request) {
should be replaced with
```go
func Handle(w http.ReponseWriter, r *http.Request) {
klog.Info("Received HTTP request", httpRequestLog(r)...)
klog.InfoS("Received HTTP request", httpRequestLog(r)...)
handle(w, r)
}