From f5afb43dd1470d2f52cf88f89fc840ead5597680 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Mon, 2 Mar 2020 21:36:05 -0800 Subject: [PATCH] Removed logging --- src/Web/WebMVC/Startup.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Web/WebMVC/Startup.cs b/src/Web/WebMVC/Startup.cs index f1f30d2df..bffe31655 100644 --- a/src/Web/WebMVC/Startup.cs +++ b/src/Web/WebMVC/Startup.cs @@ -200,11 +200,6 @@ namespace Microsoft.eShopOnContainers.WebMVC var callBackUrl = configuration.GetValue("CallBackUrl"); var sessionCookieLifetime = configuration.GetValue("SessionCookieLifetimeMinutes", 60); - var logger = loggerFactory.CreateLogger(); - logger.LogInformation($"UseLoadTest: {useLoadTest}"); - logger.LogInformation($"IdentityUrl: {identityUrl}"); - logger.LogInformation($"CallBackUrl: {callBackUrl}"); - // Add Authentication services services.AddAuthentication(options =>