diff --git a/src/block_template.cpp b/src/block_template.cpp index 722dbf9..8a5ec64 100644 --- a/src/block_template.cpp +++ b/src/block_template.cpp @@ -482,7 +482,7 @@ void BlockTemplate::update(const MinerData& data, const Mempool& mempool, Wallet LOGERR(1, "pool block blob generation and/or parsing is broken, error " << result); } else { - LOGINFO(1, "blob size = " << buf.size()); + LOGINFO(6, "blob size = " << buf.size()); } } #endif diff --git a/src/console_commands.cpp b/src/console_commands.cpp index 431e612..71b1244 100644 --- a/src/console_commands.cpp +++ b/src/console_commands.cpp @@ -106,7 +106,7 @@ static int do_status(p2pool *m_pool, const char * /* args */) static int do_loglevel(p2pool * /* m_pool */, const char *args) { int level = atoi(args); - level = std::min(std::max(level, 0), 5); + level = std::min(std::max(level, 0), 6); log::GLOBAL_LOG_LEVEL = level; LOGINFO(0, "log level set to " << level); return 0; diff --git a/src/p2p_server.cpp b/src/p2p_server.cpp index c52c41c..8dbc229 100644 --- a/src/p2p_server.cpp +++ b/src/p2p_server.cpp @@ -1353,7 +1353,7 @@ bool P2PServer::P2PClient::handle_incoming_block_async(PoolBlock* block) P2PServer* server = static_cast(m_owner); if (server->m_pool->side_chain().block_seen(*block)) { - LOGINFO(5, "block " << block->m_sidechainId << " was received before, skipping it"); + LOGINFO(6, "block " << block->m_sidechainId << " was received before, skipping it"); return true; } diff --git a/src/side_chain.cpp b/src/side_chain.cpp index c31f419..09893af 100644 --- a/src/side_chain.cpp +++ b/src/side_chain.cpp @@ -333,7 +333,7 @@ bool SideChain::get_shares(PoolBlock* tip, std::vector& shares) cons shares.resize(k + 1); - LOGINFO(5, "get_shares: " << k + 1 << " unique wallets in PPLNS window"); + LOGINFO(6, "get_shares: " << k + 1 << " unique wallets in PPLNS window"); return true; } diff --git a/src/tcp_server.inl b/src/tcp_server.inl index 7b06f44..a87efc6 100644 --- a/src/tcp_server.inl +++ b/src/tcp_server.inl @@ -336,7 +336,7 @@ bool TCPServer::connect_to_peer_nolock(Client* cl MutexLock lock(m_pendingConnectionsLock); if (!m_pendingConnections.insert(client->m_addr).second) { - LOGINFO(5, "there is already a pending connection to this IP, not connecting to " << log::Gray() << static_cast(client->m_addrString)); + LOGINFO(6, "there is already a pending connection to this IP, not connecting to " << log::Gray() << static_cast(client->m_addrString)); m_preallocatedClients.push_back(client); return false; }