aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsourabh_sourabh <sourabh.sourabh@est.tech>2022-05-06 11:31:54 +0100
committersourabh_sourabh <sourabh.sourabh@est.tech>2022-05-06 11:31:54 +0100
commite4f3b392b383910398a7fe8c9315d06e9c81e930 (patch)
treeaa5a179e19e6fc9f328da29366a2a466b691b145
parentac5ae3e24e347bb6d643e9b4e5ebcf3baa7152a2 (diff)
Security Logging Fields
- Made logging.format value case insensitive for consistency as we did same change for cps-temporal, ncmp-dmi-plugin and oom. Issue-ID: CPS-986 Signed-off-by: sourabh_sourabh <sourabh.sourabh@est.tech> Change-Id: I085a3777e8f4cf9e6b62e40d05672ce455916a85 Signed-off-by: sourabh_sourabh <sourabh.sourabh@est.tech>
-rw-r--r--cps-service/src/main/resources/logback-spring.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cps-service/src/main/resources/logback-spring.xml b/cps-service/src/main/resources/logback-spring.xml
index ce1af1314..03076023b 100644
--- a/cps-service/src/main/resources/logback-spring.xml
+++ b/cps-service/src/main/resources/logback-spring.xml
@@ -58,7 +58,7 @@
</appender>
<appender name="asyncConsole" class="ch.qos.logback.classic.AsyncAppender">
- <if condition='property("loggingFormat").equals("json")'>
+ <if condition='property("loggingFormat").equalsIgnoreCase("json")'>
<then>
<appender-ref ref="jsonConsole"/>
</then>