Enabel log level Debug in application

0
Hi  We are using the kubernetes to deply the mendix application and need to enable the log level of debug. As you mentioned in https://github.com/mendix/docker-mendix-buildpack  we can use LOGGING_CONFIG='{"Core": "DEBUG"}' environment variable to capture the log details. Could you please explain how to use in the k8s yaml file to enble the logs. I used as below but it doesnt work as expected.          - name: LOGGING_CONFIG         -  value: {"Core": "DEBUG"}
asked
2 answers
0

Try:

name: LOGGING_CONFIG
value: 
  Core: DEBUG

or test your YAML on http://www.yamllint.com/

answered
0

Try:

 environment:

 - LOGGING_CONFIG={"Core":"TRACE"}

 

 

answered