Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions setup/security/authentication/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ stackstate:
components:
server:
additionalLogging: |
logger("org.pac4j.core.engine", DEBUG)
logger("org.pac4j.oidc.profile.creator", DEBUG)
logger("org.pac4j.oidc.credentials.authenticator", DEBUG)
<logger name="org.pac4j.core.engine" level="DEBUG"/>
<logger name="org.pac4j.oidc.profile.creator" level="DEBUG"/>
<logger name="org.pac4j.oidc.credentials.authenticator" level="DEBUG"/>
api:
additionalLogging: |
logger("org.pac4j.core.engine", DEBUG)
logger("org.pac4j.oidc.profile.creator", DEBUG)
logger("org.pac4j.oidc.credentials.authenticator", DEBUG)
<logger name="org.pac4j.core.engine" level="DEBUG"/>
<logger name="org.pac4j.oidc.profile.creator" level="DEBUG"/>
<logger name="org.pac4j.oidc.credentials.authenticator" level="DEBUG"/>
```

Now run the `helm upgrade` command you used before but include this one extra yaml file (so `helm upgrade .... --values debug-auth.yaml`) to enable debug logging. No pods will be restarting, the logging configuration changes will be loaded automatically after about 30 seconds.
Expand Down
Loading