From 3a568369bd460c15de1270da58258129972ace5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ey=C3=BE=C3=B3r=20Magn=C3=BAsson?= Date: Mon, 4 Sep 2023 12:28:57 +0200 Subject: [PATCH] improvement(plugins): debug log manifest dump (#4997) Before this we were printing all the manifests we were applying at the verbose level which imo is too low a level and can make the logs very noisy. Noticed this e.g. when streaming logs via the dashboard. --- core/src/plugins/kubernetes/kubectl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/plugins/kubernetes/kubectl.ts b/core/src/plugins/kubernetes/kubectl.ts index 2af3758dea..de5c10fe23 100644 --- a/core/src/plugins/kubernetes/kubectl.ts +++ b/core/src/plugins/kubernetes/kubectl.ts @@ -111,7 +111,7 @@ export async function apply({ const input = Buffer.from(encodeYamlMulti(manifests)) - log.verbose(`Applying Kubernetes manifests:\n${input.toString()}`) + log.debug(`Applying Kubernetes manifests:\n${input.toString()}`) let args = ["apply"] dryRun && args.push("--dry-run")