personalweb

Archived
git clone git://git.wimdupont.com/personalweb.git
Log | Files | Refs | README | LICENSE

commit 7bb8c8dae903fd62d29f5f909b18d2be090962ba
parent 9d3b269e41ebf6421ff89f59668966ea4014248c
Author: Wim Dupont <wim@wimdupont.com>
Date:   Fri, 22 Dec 2023 10:05:02 +0100

spring profile update


Former-commit-id: 415928742ec0ace0374cd81c87c32ee570127e3d
Diffstat:
Msrc/main/resources/logback-spring.xml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/logback-spring.xml b/src/main/resources/logback-spring.xml @@ -8,7 +8,7 @@ <pattern>${LOG_PATTERN}</pattern> </encoder> </appender> - <springProfile name="!dev"> + <springProfile name="prd"> <appender name="logging" class="ch.qos.logback.core.rolling.RollingFileAppender"> <file>${APP_LOG_ROOT}/personalweb.log</file> <encoder> @@ -28,7 +28,7 @@ <appender-ref ref="logging"/> </root> </springProfile> - <springProfile name="dev"> + <springProfile name="!prd"> <root level="INFO"> <appender-ref ref="STDOUT"/> </root>