fix typo in log message HttContext.User merged...=>HttpContext.User merged

This commit is contained in:
Nicholas Nelson 2015-12-30 16:50:42 -05:00
parent 2d21b72561
commit 74961cac49
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ namespace Microsoft.AspNet.Authentication
if (ticket?.Principal != null)
{
Context.User = SecurityHelper.MergeUserPrincipal(Context.User, ticket.Principal);
Logger.LogInformation(0, "HttContext.User merged via AutomaticAuthentication from authenticationScheme: {scheme}.", Options.AuthenticationScheme);
Logger.LogInformation(0, "HttpContext.User merged via AutomaticAuthentication from authenticationScheme: {scheme}.", Options.AuthenticationScheme);
}
}
}