diff --git a/aws_lambda_builders/workflows/custom_make/make.py b/aws_lambda_builders/workflows/custom_make/make.py index 1faca35d2..964912d44 100644 --- a/aws_lambda_builders/workflows/custom_make/make.py +++ b/aws_lambda_builders/workflows/custom_make/make.py @@ -84,6 +84,11 @@ def run(self, args, env=None, cwd=None): out, err = p.communicate() + # Typically this type of information is logged to DEBUG, however, since the Make builder + # can be different per customer's use case, it is helpful to always log the output so + # developers can diagnose any issues. + LOG.info(out.decode("utf8").strip()) + if p.returncode != 0: raise MakeExecutionError(message=err.decode("utf8").strip())