diff options
author | Steve Smokowski <ss835w@att.com> | 2019-03-11 20:47:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-11 20:47:50 +0000 |
commit | c068ba17e06cc1aab0616c4ad11f8be8c2d23e45 (patch) | |
tree | 44f57982933b42184251308a7684176af04acd00 /asdc-controller/src | |
parent | adcc632997be2f621eadce891ffddeda83771b71 (diff) | |
parent | d85bbade599e86c29286e0b4279c811bd83638c6 (diff) |
Merge "Cleaned up MsoLogger class"
Diffstat (limited to 'asdc-controller/src')
-rw-r--r-- | asdc-controller/src/main/java/org/onap/so/asdc/client/ASDCController.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/asdc-controller/src/main/java/org/onap/so/asdc/client/ASDCController.java b/asdc-controller/src/main/java/org/onap/so/asdc/client/ASDCController.java index bb70e3c65c..dc30b0e7de 100644 --- a/asdc-controller/src/main/java/org/onap/so/asdc/client/ASDCController.java +++ b/asdc-controller/src/main/java/org/onap/so/asdc/client/ASDCController.java @@ -189,7 +189,6 @@ public class ASDCController { */ public void initASDC () throws ASDCControllerException { String event = "Initialize the ASDC Controller"; - MsoLogger.setServiceName ("InitASDC"); logger.debug(event); if (this.getControllerStatus () != ASDCControllerStatus.STOPPED) { String endEvent = "The controller is already initialized, call the closeASDC method first"; @@ -237,7 +236,6 @@ public class ASDCController { */ public void closeASDC () throws ASDCControllerException { - MsoLogger.setServiceName ("CloseController"); if (this.getControllerStatus () == ASDCControllerStatus.BUSY) { throw new ASDCControllerException ("Cannot close the ASDC controller as it's currently in BUSY state"); } |