mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-02-02 03:06:27 +00:00
Tweaked log levels
This commit is contained in:
parent
ff4d89868b
commit
8a26498b66
2 changed files with 3 additions and 3 deletions
|
@ -1449,7 +1449,7 @@ void SideChain::prune_old_blocks()
|
|||
}
|
||||
|
||||
if (num_blocks_pruned) {
|
||||
LOGINFO(3, "pruned " << num_blocks_pruned << " old blocks at heights <= " << h);
|
||||
LOGINFO(4, "pruned " << num_blocks_pruned << " old blocks at heights <= " << h);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -74,11 +74,11 @@ StratumServer::~StratumServer()
|
|||
|
||||
void StratumServer::on_block(const BlockTemplate& block)
|
||||
{
|
||||
LOGINFO(3, "new block template at height " << block.height());
|
||||
LOGINFO(4, "new block template at height " << block.height());
|
||||
|
||||
const uint32_t num_connections = m_numConnections;
|
||||
if (num_connections == 0) {
|
||||
LOGINFO(3, "no clients connected");
|
||||
LOGINFO(4, "no clients connected");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue