+++ /dev/null
-/*
- * 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(){
-
- }
-
-}
+++ /dev/null
-/*
- * 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(){
-
- }
-}
+++ /dev/null
-/*
- * 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
-}