From 53597594c75f054c857814fda216164a9a8d90c0 Mon Sep 17 00:00:00 2001 From: Magnus Schieder Date: Mon, 1 Jun 2026 16:20:32 +0200 Subject: [PATCH] Change the log level to 'Info' for empty files when applying --- internal/k8s/actions/apply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/k8s/actions/apply.go b/internal/k8s/actions/apply.go index f918322..634cea9 100644 --- a/internal/k8s/actions/apply.go +++ b/internal/k8s/actions/apply.go @@ -165,7 +165,7 @@ func applyDirectory(ctx context.Context, k8sClient *client.Client, dirPath strin continue } if info.Size() == 0 { - logger.Warn("File is empty, skipping: %s", file.Name()) + logger.Info("File is empty, skipping: %s", file.Name()) continue } key, _, err := applyManifest(ctx, k8sClient, manifestPath, labels)