diff options
author | Jim Hahn <jrh3@att.com> | 2019-07-08 10:21:36 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-07-08 15:51:01 -0400 |
commit | a593d0931f9a5785572bb52c5dfae32faa5d8116 (patch) | |
tree | 5b8aac486241678b83afd744868e1bb01d7670a2 /feature-eelf/src | |
parent | f1d4f751519980c7683538b3530f9c3661093c6c (diff) |
Fix drools-pdp due to sonar changes in common
Fixed breakages due to changes made in policy/common to satisfy
sonar.
Change-Id: I26a38340707b2903e089350c31c5dfdb5c019ee0
Issue-ID: POLICY-1791
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'feature-eelf/src')
-rw-r--r-- | feature-eelf/src/main/java/org/onap/policy/drools/eelf/EelfFeature.java | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/feature-eelf/src/main/java/org/onap/policy/drools/eelf/EelfFeature.java b/feature-eelf/src/main/java/org/onap/policy/drools/eelf/EelfFeature.java index 5f99d3ba..ee50d6e3 100644 --- a/feature-eelf/src/main/java/org/onap/policy/drools/eelf/EelfFeature.java +++ b/feature-eelf/src/main/java/org/onap/policy/drools/eelf/EelfFeature.java @@ -7,9 +7,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -20,10 +20,9 @@ package org.onap.policy.drools.eelf; +import com.att.eelf.configuration.Configuration; import java.nio.file.Path; import java.nio.file.Paths; - -import org.onap.policy.common.logging.eelf.Configuration; import org.onap.policy.common.logging.flexlogger.FlexLogger; import org.onap.policy.common.logging.flexlogger.Logger; import org.onap.policy.drools.features.PolicyEngineFeatureAPI; @@ -43,12 +42,12 @@ public class EelfFeature implements PolicyEngineFeatureAPI { Path logbackPath = Paths.get(logback); if (System.getProperty(Configuration.PROPERTY_LOGGING_FILE_PATH) == null) { - System.setProperty(Configuration.PROPERTY_LOGGING_FILE_PATH, + System.setProperty(Configuration.PROPERTY_LOGGING_FILE_PATH, logbackPath.toAbsolutePath().getParent().toString()); } if (System.getProperty(Configuration.PROPERTY_LOGGING_FILE_NAME) == null) { - System.setProperty(Configuration.PROPERTY_LOGGING_FILE_NAME, + System.setProperty(Configuration.PROPERTY_LOGGING_FILE_NAME, logbackPath.getFileName().toString()); } |