[Skip-CI] Remove logging from domain

This commit is contained in:
erik 2023-05-02 13:31:14 +02:00
parent e27db86477
commit 6171d15241

View file

@ -1,5 +1,4 @@
from typing import List
import logging
import deprecation
def filter_none(list_to_filter):
@ -45,7 +44,6 @@ class Devops(Validateable):
self.stage = stage
self.name = name
self.project_root_path = project_root_path
logging.warning(f"Set project root in DevOps {self.project_root_path}")
self.module = module
if not name:
self.name = module
@ -61,7 +59,6 @@ class Devops(Validateable):
def build_path(self):
path = [self.project_root_path, self.build_dir_name, self.name, self.module]
logging.warning(f"Set project build_path in Devops {path}")
return "/".join(filter_none(path))
def __put__(self, key, value):