change log level to info

change the log level to info from error for metadata file absence

Change-Id: I6600ab337ff6308fa92918a8455556d7ffc580b3
This commit is contained in:
Masco Kaliyamoorthy 2020-02-04 17:26:39 +05:30
parent a5e626b716
commit 8dcac2c176
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class Tools(object):
meta = self.config['elasticsearch']['metadata_files']
for _meta in meta:
if not os.path.isfile(_meta['file']):
self.logger.error(
self.logger.info(
"Metadata file {} is not present".format(_meta['file']))
return False
return True