Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit a1431ad

Browse files
committed
fixed logging levels for stage and prod
1 parent a86e746 commit a1431ad

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/main/resources/application-prod.properties

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ spring.data.mongodb.database=${DB_NAME}
33
spring.data.mongodb.host=${DB_CONTAINER_NAME}
44
spring.data.mongodb.username=${DB_USERNAME}
55
spring.data.mongodb.password=${DB_PASSWORD}
6-
#----------------- Custom --------------------------
6+
#----------------- CUSTOM --------------------------
77
filefighter.disable-password-check=false
88
#----------------- SWAGGER -------------------------
99
springdoc.swagger-ui.enabled=false
1010
#----------------- ReverseProxyOnly ----------------
11-
server.servlet.context-path=/api/
11+
server.servlet.context-path=/api/
12+
# ---------------- LOGGING -------------------
13+
logging.level.de.filefighter.rest=INFO

src/main/resources/application.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
server.servlet.context-path=/
22
server.port=8080
33
server.error.whitelabel.enabled=false
4+
#------------------- LOGGING ---------------------
5+
logging.level.root=INFO
6+
logging.level.de.filefighter.rest=DEBUG
47
#------------------- SWAGGER ----------------------
58
springdoc.swagger-ui.path=/swagger-ui.html
69
springdoc.swagger-ui.operationsSorter=method

0 commit comments

Comments
 (0)