Skip to content
This repository was archived by the owner on Dec 19, 2018. It is now read-only.

Commit d2feb06

Browse files
committed
PR #403 Feedback
1 parent ee90c9e commit d2feb06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Microsoft.AspNet.Hosting/Internal/HostingLoggerExtensions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ internal static class HostingLoggerExtensions
1313
{
1414
public static IDisposable RequestScope(this ILogger logger, HttpContext httpContext)
1515
{
16-
return logger.BeginScopeImpl(new HostingRequestScope(httpContext));
16+
return logger.BeginScopeImpl(new HostingLogScope(httpContext));
1717
}
1818

1919
public static void RequestStarting(this ILogger logger, HttpContext httpContext)
@@ -42,14 +42,14 @@ public static void RequestFinished(this ILogger logger, HttpContext httpContext)
4242
}
4343
}
4444

45-
private class HostingRequestScope : ILogValues
45+
private class HostingLogScope : ILogValues
4646
{
4747
private readonly HttpContext _httpContext;
4848

4949
private string _cachedToString;
5050
private IEnumerable<KeyValuePair<string, object>> _cachedGetValues;
5151

52-
public HostingRequestScope(HttpContext httpContext)
52+
public HostingLogScope(HttpContext httpContext)
5353
{
5454
_httpContext = httpContext;
5555
}

0 commit comments

Comments
 (0)