Skip to content

Commit 5bca2ce

Browse files
committed
feat: add epoch ID logging to transaction TPM ID registration
1 parent cf1c3e7 commit 5bca2ce

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/limestone/datastore.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,8 @@ log_channel& datastore::create_channel(const boost::filesystem::path& location)
518518
void datastore::register_transaction_tpm_id(std::string_view tx_id, std::uint64_t tpm_id) {
519519
TRACE_START << "tx_id=" << std::string(tx_id) << ", tpm_id=" << tpm_id;
520520
LOG_LP(INFO) << "register_transaction_tpm_id called: tx_id=" << std::string(tx_id)
521-
<< " tpm_id=" << tpm_id;
521+
<< " tpm_id=" << tpm_id
522+
<< " epoch_id_informed=" << epoch_id_informed_.load();
522523
if (!impl_->is_tp_monitor_enabled()) {
523524
TRACE_END << "tp_monitor disabled";
524525
return;

0 commit comments

Comments
 (0)