mirror of
https://github.com/monero-project/monero.git
synced 2026-01-20 19:42:58 +01:00
core_rpc_server: log some error messages to the console
It's helpful when you don't know something failed (especially as everything ends up returning true, so caller thinks all's fine)
This commit is contained in:
@@ -291,6 +291,7 @@ namespace cryptonote
|
|||||||
if(!get_account_address_from_str(adr, m_testnet, req.miner_address))
|
if(!get_account_address_from_str(adr, m_testnet, req.miner_address))
|
||||||
{
|
{
|
||||||
res.status = "Failed, wrong address";
|
res.status = "Failed, wrong address";
|
||||||
|
LOG_PRINT_L0(res.status);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -300,6 +301,7 @@ namespace cryptonote
|
|||||||
if(!m_core.get_miner().start(adr, static_cast<size_t>(req.threads_count), attrs))
|
if(!m_core.get_miner().start(adr, static_cast<size_t>(req.threads_count), attrs))
|
||||||
{
|
{
|
||||||
res.status = "Failed, mining not started";
|
res.status = "Failed, mining not started";
|
||||||
|
LOG_PRINT_L0(res.status);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
res.status = CORE_RPC_STATUS_OK;
|
res.status = CORE_RPC_STATUS_OK;
|
||||||
@@ -311,6 +313,7 @@ namespace cryptonote
|
|||||||
if(!m_core.get_miner().stop())
|
if(!m_core.get_miner().stop())
|
||||||
{
|
{
|
||||||
res.status = "Failed, mining not stopped";
|
res.status = "Failed, mining not stopped";
|
||||||
|
LOG_PRINT_L0(res.status);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
res.status = CORE_RPC_STATUS_OK;
|
res.status = CORE_RPC_STATUS_OK;
|
||||||
|
|||||||
Reference in New Issue
Block a user