...
Consider a better place to store the log and be aware that the application pool identity (service account) must have write access to this folder (which it may not have to the web site folder).
From Link 2.12 It's possible to control the log-level by setting an app-setting key: identityServerLogLevel
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<add key="identityServerLogLevel" value="Debug"/>
The following values are available:
Verbose, Debug, Information, Warning, Error and Fatal
Default is Warning |
More information about logging
- https://identityserver.github.io/Documentation/docsv2/configuration/logging.html
- https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/SelfHost%20SeqEvents
- https://developers.de/blogs/armin_kalajdzija/archive/2016/09/23/how-to-audit-login-activity-in-identityserver3.aspx
...