Skip to content
Snippets Groups Projects
Commit 168ff331 authored by ThanKarab's avatar ThanKarab Committed by kfilippopolitis
Browse files

Log level default values and env variables changed.

parent 82acc556
No related branches found
No related tags found
1 merge request!19Feat/186 experiment refactor
......@@ -46,8 +46,8 @@ To use this image, you need a running instance of PostgreSQL and to configure th
### LOGGING
* LOGGING_LEVEL_WEB: log level for the web layer of the application. Default to "WARN".
* LOGGING_LEVEL_HIBERNATE: log level for the Hibernate layer of the application. Default to "WARN".
* LOG_LEVEL: log level for the developer added logs. Default is "ERROR".
* LOG_LEVEL_FRAMEWORK: log level for all the framework logs. Default is "ERROR".
### ENDPOINTS
......
......@@ -50,15 +50,9 @@ frontend:
logging:
level:
root: {{ default .Env.LOG_LEVEL "ERROR" }}
org:
springframework:
security: ERROR
web: {{ default .Env.LOGGING_LEVEL_WEB "ERROR" }}
web.servlet.handler.BeanNameUrlHandlerMapping: ERROR
hibernate: {{ default .Env.LOGGING_LEVEL_HIBERNATE "ERROR" }}
root: {{ default .Env.LOG_LEVEL_FRAMEWORK "ERROR" }}
eu:
hbp: {{ default .Env.LOGGING_LEVEL_MIP "INFO" }}
hbp: {{ default .Env.LOG_LEVEL "INFO" }}
# EMBEDDED SERVER CONFIGURATION
server:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment