From 754f863a7edabd12741c1c25d341235bb5870645 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Thu, 28 May 2015 23:13:32 +0100 Subject: [PATCH] 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) --- src/rpc/core_rpc_server.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index 898b6a4b..24c7d242 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -291,6 +291,7 @@ namespace cryptonote if(!get_account_address_from_str(adr, m_testnet, req.miner_address)) { res.status = "Failed, wrong address"; + LOG_PRINT_L0(res.status); return true; } @@ -300,6 +301,7 @@ namespace cryptonote if(!m_core.get_miner().start(adr, static_cast(req.threads_count), attrs)) { res.status = "Failed, mining not started"; + LOG_PRINT_L0(res.status); return true; } res.status = CORE_RPC_STATUS_OK; @@ -311,6 +313,7 @@ namespace cryptonote if(!m_core.get_miner().stop()) { res.status = "Failed, mining not stopped"; + LOG_PRINT_L0(res.status); return true; } res.status = CORE_RPC_STATUS_OK;