mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #2283
d1f204d6
miner: set thread name before logging (moneromooo-monero)
This commit is contained in:
commit
7b14a96c03
@ -412,8 +412,8 @@ namespace cryptonote
|
|||||||
bool miner::worker_thread()
|
bool miner::worker_thread()
|
||||||
{
|
{
|
||||||
uint32_t th_local_index = boost::interprocess::ipcdetail::atomic_inc32(&m_thread_index);
|
uint32_t th_local_index = boost::interprocess::ipcdetail::atomic_inc32(&m_thread_index);
|
||||||
MGINFO("Miner thread was started ["<< th_local_index << "]");
|
|
||||||
MLOG_SET_THREAD_NAME(std::string("[miner ") + std::to_string(th_local_index) + "]");
|
MLOG_SET_THREAD_NAME(std::string("[miner ") + std::to_string(th_local_index) + "]");
|
||||||
|
MGINFO("Miner thread was started ["<< th_local_index << "]");
|
||||||
uint32_t nonce = m_starter_nonce + th_local_index;
|
uint32_t nonce = m_starter_nonce + th_local_index;
|
||||||
uint64_t height = 0;
|
uint64_t height = 0;
|
||||||
difficulty_type local_diff = 0;
|
difficulty_type local_diff = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user