diff options
author | sourabh_sourabh <sourabh.sourabh@est.tech> | 2022-05-06 11:31:54 +0100 |
---|---|---|
committer | sourabh_sourabh <sourabh.sourabh@est.tech> | 2022-05-06 11:31:54 +0100 |
commit | e4f3b392b383910398a7fe8c9315d06e9c81e930 (patch) | |
tree | aa5a179e19e6fc9f328da29366a2a466b691b145 /cps-service/src | |
parent | ac5ae3e24e347bb6d643e9b4e5ebcf3baa7152a2 (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>
Diffstat (limited to 'cps-service/src')
-rw-r--r-- | cps-service/src/main/resources/logback-spring.xml | 2 |
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 ce1af13143..03076023b3 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> |