blockchain_utilities: Increase debug statement's log level

This commit is contained in:
warptangent 2015-07-11 12:38:20 -07:00
parent 699e4b3f65
commit f9e4afd52a
No known key found for this signature in database
GPG Key ID: 0E490BEBFBE4E92D
1 changed files with 1 additions and 1 deletions

View File

@ -454,7 +454,7 @@ uint64_t BootstrapFile::count_blocks(const std::string& import_file_path)
str1.assign(buf1, sizeof(chunk_size));
if (! ::serialization::parse_binary(str1, chunk_size))
throw std::runtime_error("Error in deserialization of chunk_size");
LOG_PRINT_L1("chunk_size: " << chunk_size);
LOG_PRINT_L3("chunk_size: " << chunk_size);
if (chunk_size > BUFFER_SIZE)
{