From fe9d4c4aa17182fb6dc7a9797364ba065973904f Mon Sep 17 00:00:00 2001 From: vempo Date: Wed, 10 Jan 2018 15:12:22 +0200 Subject: Deleted no longer needed logging files Change-Id: I0a214f9572c3acabc374154ffcaca71308dfd26b Issue-ID: SDC-772 Signed-off-by: vempo --- .../sdc/logging/messages/DebugMessages.java | 33 ---------------------- .../sdc/logging/types/DebugConstants.java | 28 ------------------ .../sdc/logging/types/LoggerErrorCategory.java | 26 ----------------- 3 files changed, 87 deletions(-) delete mode 100644 openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/messages/DebugMessages.java delete mode 100644 openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/DebugConstants.java delete mode 100644 openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/LoggerErrorCategory.java (limited to 'openecomp-be') diff --git a/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/messages/DebugMessages.java b/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/messages/DebugMessages.java deleted file mode 100644 index 535d6016f1..0000000000 --- a/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/messages/DebugMessages.java +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright © 2016-2017 European Support Limited - * - * 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. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.openecomp.sdc.logging.messages; - - -public class DebugMessages { - public static final String DEFAULT_ENTER_METHOD = "Entering %s"; - public static final String DEFAULT_EXIT_METHOD = "Exiting %s"; - - public static final String ENTER_METHOD = "Entering %s with %s = %s"; - public static final String EXIT_METHOD = "Exiting %s with %s = %s"; - - public static final String ENTER_METHOD_FORMATTED = "Entering %s with %s"; - public static final String EXIT_METHOD_FORMATTED = "Exiting %s with %s"; - private DebugMessages(){ - - } - -} diff --git a/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/DebugConstants.java b/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/DebugConstants.java deleted file mode 100644 index 1312b7eac4..0000000000 --- a/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/DebugConstants.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright © 2016-2017 European Support Limited - * - * 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. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.openecomp.sdc.logging.types; - -public class DebugConstants { - public static final String EXIT = "Exit"; - public static final String EXIT_DEFAULT = "Exit_Default"; - public static final String ENTER = "Enter"; - public static final String ENTER_DEFAULT = "Enter_Default"; - public static final String DEFAULT = "Default"; - private DebugConstants(){ - - } -} diff --git a/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/LoggerErrorCategory.java b/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/LoggerErrorCategory.java deleted file mode 100644 index 4dff1aea88..0000000000 --- a/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-api/src/main/java/org/openecomp/sdc/logging/types/LoggerErrorCategory.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright © 2016-2017 European Support Limited - * - * 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. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.openecomp.sdc.logging.types; - - -public enum LoggerErrorCategory { - ERROR, - WARN, - DEBUG, - INFO, - FATAL -} -- cgit 1.2.3-korg