From 8f81e6e1ca837d33983dda60b916d54a95d7c79d Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Fri, 3 Mar 2017 06:25:45 -0500 Subject: [PATCH] Still more logging. --- module_build_service/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module_build_service/utils.py b/module_build_service/utils.py index 47b810ce..0b918096 100644 --- a/module_build_service/utils.py +++ b/module_build_service/utils.py @@ -678,7 +678,9 @@ def get_reusable_component(session, module, component_name): # The component can't be reused if there isn't a previous build in the done # or ready state if not previous_module_build: + log.info("Cannot re-use. %r is the first module build." % module) return None + old_mmd = previous_module_build.mmd() # Perform a sanity check to make sure that the buildrequires are the same