diff --git a/contributors/devel/sig-instrumentation/migration-to-structured-logging.md b/contributors/devel/sig-instrumentation/migration-to-structured-logging.md index 56ce1e9e2..36fe9f1e1 100644 --- a/contributors/devel/sig-instrumentation/migration-to-structured-logging.md +++ b/contributors/devel/sig-instrumentation/migration-to-structured-logging.md @@ -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) }