From 8e947c720cd016ae9774b1a294be56f926c28ed7 Mon Sep 17 00:00:00 2001 From: "DeJaeger, Darren (dd118r)" Date: Wed, 12 May 2021 11:34:23 -0400 Subject: [PATCH] Improve release upgrade "diff" debug log readability This adds the release name to the beginning of the diff debug log so that it's easier to correlate which diffs belong to which components when reading the Armada logs. Change-Id: If096f049a8057a46951ea70f2223a7a987636f5c --- armada/handlers/chart_deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armada/handlers/chart_deploy.py b/armada/handlers/chart_deploy.py index 01c6ae38..133f3b44 100644 --- a/armada/handlers/chart_deploy.py +++ b/armada/handlers/chart_deploy.py @@ -155,7 +155,7 @@ class ChartDeploy(object): else: action = metrics.ChartDeployAction.UPGRADE LOG.info("Found updates to chart release inputs") - LOG.debug("%s", diff) + LOG.debug("Release=%s, diff=%s", release_name, diff) result['diff'] = {chart['release']: str(diff)} def upgrade():