Correct the log message for IAsyncEnumerable (#11607)

This commit is contained in:
Pranav K 2019-07-08 09:13:35 -07:00 committed by GitHub
parent adc0043c2a
commit 4c67855ccf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ namespace Microsoft.AspNetCore.Mvc.Infrastructure
return Task.CompletedTask;
}
Logger.ObjectResultExecuting(result.Value);
Logger.ObjectResultExecuting(value);
result.OnFormatting(context);
return selectedFormatter.WriteAsync(formatterContext);