From 74961cac493644922840b9e34c67a7a778871582 Mon Sep 17 00:00:00 2001 From: Nicholas Nelson Date: Wed, 30 Dec 2015 16:50:42 -0500 Subject: [PATCH] fix typo in log message HttContext.User merged...=>HttpContext.User merged --- src/Microsoft.AspNet.Authentication/AuthenticationHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Authentication/AuthenticationHandler.cs b/src/Microsoft.AspNet.Authentication/AuthenticationHandler.cs index 9beeb24823..c45fdfa7e6 100644 --- a/src/Microsoft.AspNet.Authentication/AuthenticationHandler.cs +++ b/src/Microsoft.AspNet.Authentication/AuthenticationHandler.cs @@ -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); } } }