From 94f451adfd1cb8b845a0d81ef0bf556dedc0cbda Mon Sep 17 00:00:00 2001 From: Ben McKerry <110857332+bmckerry@users.noreply.github.com> Date: Fri, 3 Oct 2025 11:01:55 -0400 Subject: [PATCH] temp: extra logging for topicInfo --- pkg/apply/apply.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/apply/apply.go b/pkg/apply/apply.go index ff6104fc..fa04a708 100644 --- a/pkg/apply/apply.go +++ b/pkg/apply/apply.go @@ -266,6 +266,7 @@ func (t *TopicApplier) Apply(ctx context.Context) (NewOrUpdatedChanges, error) { log.Info("Checking if topic already exists...") topicInfo, err := t.adminClient.GetTopic(ctx, t.topicName, true) + log.Infof("topic info for %s: %+v", t.topicName, topicInfo) if err != nil { // if the topic doesn't exist, create it if err == admin.ErrTopicDoesNotExist {