Skip to content

Commit 25f899c

Browse files
log: Move "Pre-allocating up to position 0x[...] in [...].dat" log message to debug category
1 parent acd7980 commit 25f899c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/flatfile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ size_t FlatFileSeq::Allocate(const FlatFilePos& pos, size_t add_size, bool& out_
6666
if (CheckDiskSpace(m_dir, inc_size)) {
6767
FILE *file = Open(pos);
6868
if (file) {
69-
LogPrintf("Pre-allocating up to position 0x%x in %s%05u.dat\n", new_size, m_prefix, pos.nFile);
69+
LogPrint(BCLog::VALIDATION, "Pre-allocating up to position 0x%x in %s%05u.dat\n", new_size, m_prefix, pos.nFile);
7070
AllocateFileRange(file, pos.nPos, inc_size);
7171
fclose(file);
7272
return inc_size;

0 commit comments

Comments
 (0)