diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-06-13 17:19:07 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-06-13 17:21:44 -0500 |
commit | eeed2ae14fceb21c9518a0056b2a29039b69f092 (patch) | |
tree | d455fa96f904589c442c25f4aad8a4093b3d7aaa /auth/auth-core | |
parent | 06c8b84216abecd48488741a688317a74a17b348 (diff) |
Adjust Logging Dir settings for ONAP Users
Issue-ID: AAF-360
Change-Id: If19090ef482372d3a3a9aa2856762af91bc54017
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/auth-core')
-rw-r--r-- | auth/auth-core/src/main/java/org/onap/aaf/auth/server/Log4JLogIt.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/auth/auth-core/src/main/java/org/onap/aaf/auth/server/Log4JLogIt.java b/auth/auth-core/src/main/java/org/onap/aaf/auth/server/Log4JLogIt.java index e295c867..e6f2fc95 100644 --- a/auth/auth-core/src/main/java/org/onap/aaf/auth/server/Log4JLogIt.java +++ b/auth/auth-core/src/main/java/org/onap/aaf/auth/server/Log4JLogIt.java @@ -62,6 +62,9 @@ public class Log4JLogIt implements LogIt { logs.mkdirs(); } + if(System.getProperty("log4j.configuration")==null) { + System.setProperty("log4j.configuration", etc_dir+'/'+propsFile); + } LogFileNamer lfn = new LogFileNamer(log_dir,root); try { service=lfn.setAppender("service"); // when name is split, i.e. authz|service, the Appender is "authz", and "service" |