X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=n2vc%2Fk8s_helm_conn.py;h=1efacc447423c21b1592ab2123c210a42271f5e1;hp=ff1f33112c1629fa2294853b9c3be92c01b52de5;hb=e2bd3dab53da1ac8ff732b71d5bb66d06e01e368;hpb=620fa3c11297a0938f25cb867a9a341b50098409 diff --git a/n2vc/k8s_helm_conn.py b/n2vc/k8s_helm_conn.py index ff1f331..1efacc4 100644 --- a/n2vc/k8s_helm_conn.py +++ b/n2vc/k8s_helm_conn.py @@ -1200,13 +1200,13 @@ class K8sHelmConnector(K8sConnector): return '', -1 def _check_file_exists(self, filename: str, exception_if_not_exists: bool = False): - self.log.debug('Checking if file {} exists...'.format(filename)) + # self.log.debug('Checking if file {} exists...'.format(filename)) if os.path.exists(filename): return True else: msg = 'File {} does not exist'.format(filename) if exception_if_not_exists: - self.log.error(msg) + # self.log.error(msg) raise K8sException(msg)