[Skip-CI] Remove logging from domain
This commit is contained in:
parent
e27db86477
commit
6171d15241
1 changed files with 0 additions and 3 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue