| 282 | } |
| 283 | |
| 284 | void LogPushData::addTxsTag() { |
| 285 | if (logSystem->getTLogVersion() >= TLogVersion::V4) { |
| 286 | next_message_tags.push_back(logSystem->getRandomTxsTag()); |
| 287 | } else { |
| 288 | next_message_tags.push_back(txsTag); |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | void LogPushData::addTransactionInfo(SpanContext const& context) { |
| 293 | CODE_PROBE(!spanContext.isValid(), "addTransactionInfo with invalid SpanContext"); |
no test coverage detected