From 20ce5af4c647d9ebd97b40683bd0747383c9dc20 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Thu, 3 May 2018 15:44:04 +0200 Subject: [PATCH] Print a log message if we fail to shrink the debug log file --- src/logging.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/logging.cpp b/src/logging.cpp index 2a55d3665..87756fb4c 100644 --- a/src/logging.cpp +++ b/src/logging.cpp @@ -255,6 +255,7 @@ void BCLog::Logger::ShrinkDebugFile() // Restart the file with some of the end std::vector vch(RECENT_DEBUG_HISTORY_SIZE, 0); if (fseek(file, -((long)vch.size()), SEEK_END)) { + LogPrintf("Failed to shrink debug log file: fseek(...) failed\n"); fclose(file); return; }