mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
blockchain_utilities: report file offset where a read error occurs
This commit is contained in:
parent
31f47d72fe
commit
80d7c6c730
1 changed files with 3 additions and 3 deletions
|
@ -400,18 +400,18 @@ uint64_t BootstrapFile::count_bytes(std::ifstream& import_file, uint64_t blocks,
|
||||||
{
|
{
|
||||||
std::cout << refresh_string;
|
std::cout << refresh_string;
|
||||||
MWARNING("WARNING: chunk_size " << chunk_size << " > BUFFER_SIZE " << BUFFER_SIZE
|
MWARNING("WARNING: chunk_size " << chunk_size << " > BUFFER_SIZE " << BUFFER_SIZE
|
||||||
<< " height: " << h-1);
|
<< " height: " << h-1 << ", offset " << bytes_read);
|
||||||
throw std::runtime_error("Aborting: chunk size exceeds buffer size");
|
throw std::runtime_error("Aborting: chunk size exceeds buffer size");
|
||||||
}
|
}
|
||||||
if (chunk_size > CHUNK_SIZE_WARNING_THRESHOLD)
|
if (chunk_size > CHUNK_SIZE_WARNING_THRESHOLD)
|
||||||
{
|
{
|
||||||
std::cout << refresh_string;
|
std::cout << refresh_string;
|
||||||
MDEBUG("NOTE: chunk_size " << chunk_size << " > " << CHUNK_SIZE_WARNING_THRESHOLD << " << height: "
|
MDEBUG("NOTE: chunk_size " << chunk_size << " > " << CHUNK_SIZE_WARNING_THRESHOLD << " << height: "
|
||||||
<< h-1);
|
<< h-1 << ", offset " << bytes_read);
|
||||||
}
|
}
|
||||||
else if (chunk_size <= 0) {
|
else if (chunk_size <= 0) {
|
||||||
std::cout << refresh_string;
|
std::cout << refresh_string;
|
||||||
MDEBUG("ERROR: chunk_size " << chunk_size << " <= 0" << " height: " << h-1);
|
MDEBUG("ERROR: chunk_size " << chunk_size << " <= 0" << " height: " << h-1 << ", offset " << bytes_read);
|
||||||
throw std::runtime_error("Aborting");
|
throw std::runtime_error("Aborting");
|
||||||
}
|
}
|
||||||
// skip to next expected block size value
|
// skip to next expected block size value
|
||||||
|
|
Loading…
Reference in a new issue