Document how to set loglevel Duende.AccessTokenManagement and Duende.IdentityModel #190
Answered
by
wcabus
LockTar
asked this question in
Open Source
-
Hi, I'm using the IdentityModel and Access token management packages. I assume it is like this: {
"Logging": {
"LogLevel": {
"Default": "Information",
"Duende.AccessTokenManagement": "Information",
"Duende.IdentityModel": "Information"
}
}
} It isn't documented but I see documentation for the OidcClient here. |
Beta Was this translation helpful? Give feedback.
Answered by
wcabus
May 13, 2025
Replies: 1 comment
-
Yep, that should do it! You can also specify a base log level for "Duende" and override specific sub-namespaces, e.g. {
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Duende": "Warning",
"Duende.AccessTokenManagement": "Debug"
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
LockTar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yep, that should do it! You can also specify a base log level for "Duende" and override specific sub-namespaces, e.g.