Merge pull request #1799 from coreos-inc/remove-unneeded-log
Change log level of an expected log message
This commit is contained in:
commit
7c3ef6781d
1 changed files with 3 additions and 1 deletions
|
@ -513,7 +513,9 @@ class EphemeralBuilderManager(BaseManager):
|
|||
# as it will also remove this mapping.
|
||||
job = self._component_to_job.pop(build_component, None)
|
||||
if job is None:
|
||||
logger.error('Could not find job for the build component on realm %s; it may have expired',
|
||||
# This will occur once the build finishes, so no need to worry about it. We log in case it
|
||||
# happens outside of the expected flow.
|
||||
logger.debug('Could not find job for the build component on realm %s; component is ready',
|
||||
build_component.builder_realm)
|
||||
raise Return()
|
||||
|
||||
|
|
Reference in a new issue