From 9f47378c3a2f88ab91a1989e700dad2d9ca09acc Mon Sep 17 00:00:00 2001 From: Roland Guijt Date: Tue, 18 Jun 2024 10:38:47 +0200 Subject: [PATCH] Add logger for v6 --- IdentityServer/v6/docs/content/ui/login/dynamicproviders.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/IdentityServer/v6/docs/content/ui/login/dynamicproviders.md b/IdentityServer/v6/docs/content/ui/login/dynamicproviders.md index 5f6977f0..0d26a9d0 100644 --- a/IdentityServer/v6/docs/content/ui/login/dynamicproviders.md +++ b/IdentityServer/v6/docs/content/ui/login/dynamicproviders.md @@ -114,7 +114,8 @@ For example: ```cs class CustomOidcConfigureOptions : ConfigureAuthenticationOptions { - public CustomOidcConfigureOptions(IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor) + public CustomOidcConfigureOptions(IHttpContextAccessor httpContextAccessor, + ILogger logger) : base(httpContextAccessor, logger) { } @@ -131,7 +132,7 @@ class CustomOidcConfigureOptions : ConfigureAuthenticationOptions(); }