diff --git a/libs/full/parcelport_lci/src/parcelport_lci.cpp b/libs/full/parcelport_lci/src/parcelport_lci.cpp index ebefd3f16f3a..c3fcbd592db4 100644 --- a/libs/full/parcelport_lci/src/parcelport_lci.cpp +++ b/libs/full/parcelport_lci/src/parcelport_lci.cpp @@ -461,9 +461,6 @@ namespace hpx::parcelset::policies::lci { hpx::threads::get_self_id() == hpx::threads::invalid_thread_id)) { static thread_local unsigned int tls_rand_seed = rand(); - util::lci_environment::log( - util::lci_environment::log_level_t::debug, "device", - "Rank %d unusual phase\n", LCI_RANK); return devices[rand_r(&tls_rand_seed) % devices.size()]; } if (tls_device_idx == std::size_t(-1)) diff --git a/libs/full/parcelport_lci/src/sender_connection_base.cpp b/libs/full/parcelport_lci/src/sender_connection_base.cpp index 2f00e0f7c50e..468edb37e01b 100644 --- a/libs/full/parcelport_lci/src/sender_connection_base.cpp +++ b/libs/full/parcelport_lci/src/sender_connection_base.cpp @@ -117,10 +117,10 @@ namespace hpx::parcelset::policies::lci { char buf[1024]; size_t consumed = 0; consumed += snprintf(buf + consumed, sizeof(buf) - consumed, - "%d:%lf:send_connection(%p) start:%d:%d:%d:[", LCI_RANK, + "%d:%lf:send_connection(%p) start:%d:%d:%d:%d:[", LCI_RANK, hpx::chrono::high_resolution_clock::now() / 1e9, (void*) this, - header_.numbytes_nonzero_copy(), header_.numbytes_tchunk(), - header_.num_zero_copy_chunks()); + dst_rank, header_.numbytes_nonzero_copy(), + header_.numbytes_tchunk(), header_.num_zero_copy_chunks()); HPX_ASSERT(sizeof(buf) > consumed); for (int i = 0; i < header_.num_zero_copy_chunks(); ++i) {