diff options
| author | Riccardo Spagni <ric@spagni.net> | 2015-07-15 00:53:35 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2015-07-15 00:53:45 +0200 |
| commit | 9688e6fdd896f4034b1c0dd40c406cd83880f830 (patch) | |
| tree | 9d74a8f9bfcf3e9c816feda1b9d720471886ad9d /src/blockchain_utilities/bootstrap_file.cpp | |
| parent | 10e50a4da86a0d625496998090a5070c8373ce78 (diff) | |
| parent | fd73d9cc3a05ca551cdd1c425c664e24e746b152 (diff) | |
| download | monzero-core-9688e6fdd896f4034b1c0dd40c406cd83880f830.tar.gz monzero-core-9688e6fdd896f4034b1c0dd40c406cd83880f830.tar.xz monzero-core-9688e6fdd896f4034b1c0dd40c406cd83880f830.zip | |
Merge pull request #334
fd73d9c Check and resize if needed at batch transaction start (warptangent)
f9e4afd blockchain_utilities: Increase debug statement's log level (warptangent)
699e4b3 blockchain_utilities: Pass expected number of blocks when starting batch (warptangent)
6e170c8 Optionally allow DB to know expected number of blocks at batch transaction start (warptangent)
Diffstat (limited to 'src/blockchain_utilities/bootstrap_file.cpp')
| -rw-r--r-- | src/blockchain_utilities/bootstrap_file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blockchain_utilities/bootstrap_file.cpp b/src/blockchain_utilities/bootstrap_file.cpp index 70f0b1fec..573cb1572 100644 --- a/src/blockchain_utilities/bootstrap_file.cpp +++ b/src/blockchain_utilities/bootstrap_file.cpp @@ -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) { |
