Merge pull request #636 from npnelson/dev

Fix Typo in a Log Message
This commit is contained in:
Chris R 2016-01-05 15:27:47 -08:00
commit 2a939287bc
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);
}
}
}