Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(console): drop noisy warn when reconcile finds no matching entry
  • Loading branch information
waleedlatif1 committed May 13, 2026
commit 575493959fd10cefecba01ea01feaf81184ec973
Original file line number Diff line number Diff line change
Expand Up @@ -543,16 +543,6 @@ function reconcileChildTraceSpans(
? findConsoleEntryForSpan(workflowId, executionId, childWorkflowInstanceId, span)
: undefined
if (span.blockId) {
if (!matchingEntry) {
logger.warn('reconcileChildTraceSpans found no matching console entry for span', {
workflowId,
executionId,
spanBlockId: span.blockId,
childWorkflowInstanceId,
spanExecutionOrder: span.executionOrder,
spanIterationIndex: span.iterationIndex,
})
}
const errorMessage = normalizeSpanError(span.output?.error)
updateConsole(
span.blockId,
Expand Down
Loading