diff options
| author | practicalswift <[email protected]> | 2018-05-03 15:44:04 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-05-03 15:44:04 +0200 |
| commit | 20ce5af4c647d9ebd97b40683bd0747383c9dc20 (patch) | |
| tree | 3ab83eb664539307ecff60ae6c7e0aae148eaca9 /src/logging.cpp | |
| parent | Handle unsuccessful fseek(...):s (diff) | |
| download | discoin-20ce5af4c647d9ebd97b40683bd0747383c9dc20.tar.xz discoin-20ce5af4c647d9ebd97b40683bd0747383c9dc20.zip | |
Print a log message if we fail to shrink the debug log file
Diffstat (limited to 'src/logging.cpp')
| -rw-r--r-- | src/logging.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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<char> 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; } |