Recordpc is Recordp with a correlation back to a previously-recorded event. The new event's CorrelatedID is set to startID; Pair() can then walk the link in either direction from the UI.
(startID uint64, source string, level Level, message, payload string)
| 101 | // event. The new event's CorrelatedID is set to startID; Pair() can then |
| 102 | // walk the link in either direction from the UI. |
| 103 | func Recordpc(startID uint64, source string, level Level, message, payload string) uint64 { |
| 104 | return record(startID, source, level, message, truncatePayload(payload)) |
| 105 | } |
| 106 | |
| 107 | // Recordfc is Recordf with a correlation back to a previously-recorded |
| 108 | // event. Used for the error-path response that pairs with an in-flight |