diff --git a/flow/connectors/postgres/cdc.go b/flow/connectors/postgres/cdc.go index c8a9fe769..3748ef2c2 100644 --- a/flow/connectors/postgres/cdc.go +++ b/flow/connectors/postgres/cdc.go @@ -495,7 +495,8 @@ func PullCdcRecords[Items model.Items]( return fmt.Errorf("ParsePrimaryKeepaliveMessage failed: %w", err) } - logger.Info("Primary Keepalive Message", slog.Any("data", pkm)) + logger.Debug("Primary Keepalive Message", slog.Bool("replyRequested", pkm.ReplyRequested), + slog.String("ServerWALEnd", pkm.ServerWALEnd.String()), slog.String("ServerTime", pkm.ServerTime.String())) if pkm.ServerWALEnd > clientXLogPos { clientXLogPos = pkm.ServerWALEnd