Skip to content

Commit

Permalink
improvement(plugins): debug log manifest dump (#4997)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
eysi09 committed Sep 4, 2023
1 parent 9ecd87b commit 3a56836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/kubernetes/kubectl.ts
Expand Up @@ -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")
Expand Down

0 comments on commit 3a56836

Please sign in to comment.