diff options
| author | Dan Engelbrecht <[email protected]> | 2023-04-21 15:47:00 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-04-21 15:47:00 +0200 |
| commit | 3a774c0e15d86102a540d51c34cb35f9689df6a8 (patch) | |
| tree | f5b999068c20f3a9cb8c2e92e7dc55f3c2021ce4 /zenstore/blockstore.cpp | |
| parent | switch to juliangruber/read-file-action to avoid deprecated api usage (#252) (diff) | |
| download | zen-3a774c0e15d86102a540d51c34cb35f9689df6a8.tar.xz zen-3a774c0e15d86102a540d51c34cb35f9689df6a8.zip | |
save cache rawsize and rawhash in manifest file instead of log file (#251)
* save cache rawsize and rawhash in manifest file instead of log file
* don't use # as prefix for counts in log
Diffstat (limited to 'zenstore/blockstore.cpp')
| -rw-r--r-- | zenstore/blockstore.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zenstore/blockstore.cpp b/zenstore/blockstore.cpp index 0e1c5b2c7..5e47d061f 100644 --- a/zenstore/blockstore.cpp +++ b/zenstore/blockstore.cpp @@ -335,9 +335,9 @@ BlockStore::ReclaimSpace(const ReclaimSnapshotState& Snapshot, Stopwatch TotalTimer; const auto _ = MakeGuard([&] { ZEN_DEBUG( - "reclaim space for '{}' DONE after {}, write lock: {} ({}), read lock: {} ({}), collected {} bytes, deleted #{} and moved " - "#{} " - "of #{} " + "reclaim space for '{}' DONE after {}, write lock: {} ({}), read lock: {} ({}), collected {} bytes, deleted {} and moved " + "{} " + "of {} " "chunks ({}).", m_BlocksBasePath, NiceTimeSpanMs(TotalTimer.GetElapsedTimeMs()), @@ -424,7 +424,7 @@ BlockStore::ReclaimSpace(const ReclaimSnapshotState& Snapshot, if (DryRun) { - ZEN_DEBUG("garbage collect for '{}' DISABLED, found #{} {} chunks of total #{} {}", + ZEN_DEBUG("garbage collect for '{}' DISABLED, found {} {} chunks of total {} {}", m_BlocksBasePath, DeleteCount, NiceBytes(OldTotalSize - NewTotalSize), |