Skip to content
Snippets Groups Projects
Commit ccbbcf37 authored by ThanKarab's avatar ThanKarab
Browse files

Log level default values and env variables changed.

parent 6a75260e
No related branches found
No related tags found
1 merge request!17Feat/elk stack
...@@ -46,8 +46,8 @@ To use this image, you need a running instance of PostgreSQL and to configure th ...@@ -46,8 +46,8 @@ To use this image, you need a running instance of PostgreSQL and to configure th
### LOGGING ### LOGGING
* LOGGING_LEVEL_WEB: log level for the web layer of the application. Default to "WARN". * LOG_LEVEL: log level for the developer added logs. Default is "ERROR".
* LOGGING_LEVEL_HIBERNATE: log level for the Hibernate layer of the application. Default to "WARN". * LOG_LEVEL_FRAMEWORK: log level for all the framework logs. Default is "ERROR".
### ENDPOINTS ### ENDPOINTS
......
...@@ -50,15 +50,9 @@ frontend: ...@@ -50,15 +50,9 @@ frontend:
logging: logging:
level: level:
root: {{ default .Env.LOG_LEVEL "ERROR" }} root: {{ default .Env.LOG_LEVEL_FRAMEWORK "ERROR" }}
org:
springframework:
security: ERROR
web: {{ default .Env.LOGGING_LEVEL_WEB "ERROR" }}
web.servlet.handler.BeanNameUrlHandlerMapping: ERROR
hibernate: {{ default .Env.LOGGING_LEVEL_HIBERNATE "ERROR" }}
eu: eu:
hbp: {{ default .Env.LOGGING_LEVEL_MIP "INFO" }} hbp: {{ default .Env.LOG_LEVEL "INFO" }}
# EMBEDDED SERVER CONFIGURATION # EMBEDDED SERVER CONFIGURATION
server: 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