108
// not a child).
109
if p.ParentWorkflowID != "" {
111
>
log.String("parent_workflow_id", p.ParentWorkflowID),
112
>
log.String("parent_run_id", p.ParentRunID),
113
>
)
114
>
if p.ParentInitiatedID != 0 {
115
>
attrs = append(attrs, log.Int64("parent_initiated_id", p.ParentInitiatedID))
116
>
}
117
}
118
if len(p.Details) > 0 {
120
>
}
121
if len(p.EventVersionHistory) > 0 {
122
>
attrs = append(attrs, jsonAttr("event_version_history", p.EventVersionHistory))
replication_events.go
123
>
}
124
switch p.Phase {
125
case ReplicationSent:
126
attrs = p.appendSent(attrs)
128
>
attrs = append(attrs, log.Int64("attempt", int64(p.Attempt)))
129
case ReplicationApplied:
130
attrs = p.appendApplied(attrs)