diff --git a/core/services/workflows/syncer/workflow_registry.go b/core/services/workflows/syncer/workflow_registry.go index c840c9c6189..d862c2d36bc 100644 --- a/core/services/workflows/syncer/workflow_registry.go +++ b/core/services/workflows/syncer/workflow_registry.go @@ -676,13 +676,13 @@ func (w *workflowRegistry) syncUsingReconciliationStrategy(ctx context.Context, w.lggr.Errorw("failed to get registry state", "err", err) continue } - w.lggr.Debugw("preparing events to reconcile", "numWorkflowMetadata", len(workflowMetadata), "blockHeight", head.Height, "numPendingEvents", len(pendingEvents)) + w.lggr.Debugw("preparing events to reconcile", "numWorkflowMetadata", len(workflowMetadata), "blockHeight", head.Height, "numPendingEvents", len(pendingEvents), "metadata", workflowMetadata) events, err := w.generateReconciliationEvents(ctx, pendingEvents, workflowMetadata, don.ID) if err != nil { w.lggr.Errorw("failed to generate reconciliation events", "err", err) continue } - w.lggr.Debugw("generated events to reconcile", "num", len(events)) + w.lggr.Debugw("generated events to reconcile", "num", len(events), "events", events) pendingEvents = map[string]*reconciliationEvent{}