Change default log level of IDP

- the IDP log level is now configurable via the idp_log_level variable
- the IDP log level default has been changed to 'debug' to be compatible
  with changes in
  1e676e8cf1
This commit is contained in:
Jan Dittberner 2024-08-07 07:39:58 +02:00
parent 7b8bb69bcf
commit 52193d647f

View file

@ -16,4 +16,4 @@ enc-key = "{{ idp_enc_key | default(lookup('community.general.random_string', le
url = "https://{{ oidc_urls.hydra_admin.address | default("hydra.cacert.localhost") }}:{{ oidc_urls.hydra_admin.port | default("3000") }}" url = "https://{{ oidc_urls.hydra_admin.address | default("hydra.cacert.localhost") }}:{{ oidc_urls.hydra_admin.port | default("3000") }}"
[log] [log]
level = "trace" level = "{{ idp_log_level | default('debug') }}"