diff options
author | jhh <jorge.hernandez-herrero@att.com> | 2021-04-08 20:56:17 -0500 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-04-13 06:33:50 +0000 |
commit | 417bcbae7b6cdb92da9ab8cb02f7bc31c9f5192d (patch) | |
tree | e8c7b95876250714b9c39f0278431e9825f30356 /kubernetes/policy/components/policy-pap/resources/config/logback.xml | |
parent | 773c5cb5f097bf68ed783749be2de2a59aa9504f (diff) |
[POLICY] Add date to logging timestamp
Policy components log the current time to stdout
but not the actual date. This patch adds the
date in UTC format
Issue-ID: POLICY-3177
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Change-Id: If86cad58115d9124e09a953c0aa807644830ad4b
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Diffstat (limited to 'kubernetes/policy/components/policy-pap/resources/config/logback.xml')
-rwxr-xr-x | kubernetes/policy/components/policy-pap/resources/config/logback.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kubernetes/policy/components/policy-pap/resources/config/logback.xml b/kubernetes/policy/components/policy-pap/resources/config/logback.xml index 6038e20b84..6ed32cc7df 100755 --- a/kubernetes/policy/components/policy-pap/resources/config/logback.xml +++ b/kubernetes/policy/components/policy-pap/resources/config/logback.xml @@ -1,6 +1,7 @@ <!-- ============LICENSE_START======================================================= Copyright (C) 2020 Bell Canada. All rights reserved. + Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -76,7 +77,7 @@ <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> - <Pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</Pattern> + <Pattern>[%d{yyyy-MM-dd'T'HH:mm:ss.SSS+00:00, UTC}|%level|%logger{0}|%thread] %msg%n</Pattern> </encoder> </appender> |