mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-04-02 12:19:04 +00:00
Added an error code to some error messages
This commit is contained in:
parent
1053e22a52
commit
510a271434
2 changed files with 4 additions and 1 deletions
|
@ -438,7 +438,7 @@ void P2PServer::save_peer_list()
|
|||
std::ofstream f(saved_peer_list_file_name, std::ios::binary);
|
||||
|
||||
if (!f.is_open()) {
|
||||
LOGERR(1, "failed to save peer list");
|
||||
LOGERR(1, "failed to save peer list " << saved_peer_list_file_name << ", error " << errno);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -1695,6 +1695,9 @@ void p2pool::api_update_block_found(const ChainMain* data, const PoolBlock* bloc
|
|||
f.flush();
|
||||
f.close();
|
||||
}
|
||||
else {
|
||||
LOGERR(1, "Failed to update " << FOUND_BLOCKS_FILE << ", error " << errno);
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<FoundBlock> found_blocks;
|
||||
|
|
Loading…
Reference in a new issue