diff --git a/src/slice/service/slice_grouper/Tools.py b/src/slice/service/slice_grouper/Tools.py
index c635ffcf4ac08147d63d2beede5914c0e8ce2056..ca957f3c7760eb65b649d22ecb5b57dee3e08dab 100644
--- a/src/slice/service/slice_grouper/Tools.py
+++ b/src/slice/service/slice_grouper/Tools.py
@@ -12,7 +12,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-import logging
 from typing import Dict, List, Optional, Set, Tuple
 from common.Constants import DEFAULT_CONTEXT_NAME
 from common.Settings import get_setting
@@ -28,8 +27,6 @@ TRUE_VALUES = {'Y', 'YES', 'TRUE', 'T', 'E', 'ENABLE', 'ENABLED'}
 
 NO_ISOLATION = IsolationLevelEnum.NO_ISOLATION
 
-LOGGER = logging.getLogger(__name__)
-
 def is_slice_grouping_enabled() -> bool:
     is_enabled = get_setting(SETTING_NAME_SLICE_GROUPING, default=None)
     if is_enabled is None: return False