Fix log level on build manager logs
This commit is contained in:
parent
1ba3c24fe5
commit
a1a6df7914
1 changed files with 2 additions and 2 deletions
|
@ -285,7 +285,7 @@ class BuildComponent(BaseComponent):
|
|||
raise Return(False)
|
||||
except InvalidRepositoryBuildException:
|
||||
build_id = self._current_job.repo_build.uuid
|
||||
logger.info('Build %s was not found; repo was probably deleted', build_id)
|
||||
logger.warning('Build %s was not found; repo was probably deleted', build_id)
|
||||
raise Return(False)
|
||||
|
||||
BuildComponent._process_pushpull_status(status_dict, phase, log_data, self._image_info)
|
||||
|
@ -350,7 +350,7 @@ class BuildComponent(BaseComponent):
|
|||
try:
|
||||
yield From(self._build_status.set_phase(BUILD_PHASE.COMPLETE))
|
||||
except InvalidRepositoryBuildException:
|
||||
logger.info('Build %s was not found; repo was probably deleted', build_id)
|
||||
logger.warning('Build %s was not found; repo was probably deleted', build_id)
|
||||
raise Return()
|
||||
|
||||
yield From(self._build_finished(BuildJobResult.COMPLETE))
|
||||
|
|
Reference in a new issue