Skip to content

Commit

Permalink
Merge pull request #53 from d-velop/feature/logging_fix
Browse files Browse the repository at this point in the history
Changed LogLevel of IDP Client Creation to Debug
  • Loading branch information
ckuetbach authored Nov 22, 2024
2 parents c0a1dd0 + c2a3115 commit 09bf214
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public IdentityProviderClient(IdentityProviderClientOptions options)
_allowedImpersonatedApps = options.AllowedImpersonatedApps;
_allowImpersonatedUsers = options.AllowImpersonatedUsers;
_logCallback = options.LogCallBack;
_logCallback?.Invoke(IdentityProviderClientLogLevel.Info, "IdentityProviderClient initialized");
_logCallback?.Invoke(IdentityProviderClientLogLevel.Debug, "IdentityProviderClient initialized");
}

public static string CookieName => COOKIENAME;
Expand Down

0 comments on commit 09bf214

Please sign in to comment.