From 90133dbc0ed8be70c7da3bb008d874d779bdb7ee Mon Sep 17 00:00:00 2001 From: Duke Date: Wed, 27 Dec 2023 17:56:44 -0500 Subject: [PATCH] Also log flush mode in FlushStateToDisk() --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 29a086cfd..8cbb35efc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3717,7 +3717,7 @@ bool static FlushStateToDisk(CValidationState &state, FlushStateMode mode) { pblockindex->TrimSolution(); ++nTrimmed; } - LogPrintf("%s: trimmed %d solutions from block index\n", __func__, nTrimmed); + LogPrintf("%s: trimmed %d solutions from block index mode=%d\n", __func__, nTrimmed, mode); } // Finally remove any pruned files if (fFlushForPrune)