diff --git a/src/main/python/ddadevops/domain/common.py b/src/main/python/ddadevops/domain/common.py index fd15e27..076bfd3 100644 --- a/src/main/python/ddadevops/domain/common.py +++ b/src/main/python/ddadevops/domain/common.py @@ -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):