From 9d862a04e0b0f9f308bcb1f26c20c8c1bc86dcf8 Mon Sep 17 00:00:00 2001 From: Cole Snodgrass Date: Wed, 15 May 2024 13:41:05 -0700 Subject: [PATCH] fix log output missing %s --- internal/cmd/local/local/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/local/local/cmd.go b/internal/cmd/local/local/cmd.go index e0fea7a..9ca0e23 100644 --- a/internal/cmd/local/local/cmd.go +++ b/internal/cmd/local/local/cmd.go @@ -357,7 +357,7 @@ func (c *Command) handleEvent(ctx context.Context, e *v1events.Event) { // Similar issue to DeprecatedLastTimestamp, the series attribute is always nil if logs != "" { pterm.Warning.Printfln( - "Encountered an issue deploying Airbyte:\n Pod: %s\n Reason: %s\n Message: %s\n Count: %d\n Logs:", + "Encountered an issue deploying Airbyte:\n Pod: %s\n Reason: %s\n Message: %s\n Count: %d\n Logs: %s", e.Name, e.Reason, e.Note, e.DeprecatedCount, logs, ) } else {