aboutsummaryrefslogtreecommitdiff
path: root/zenstore/compactcas.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2023-04-21 15:47:00 +0200
committerGitHub <[email protected]>2023-04-21 15:47:00 +0200
commit3a774c0e15d86102a540d51c34cb35f9689df6a8 (patch)
treef5b999068c20f3a9cb8c2e92e7dc55f3c2021ce4 /zenstore/compactcas.cpp
parentswitch to juliangruber/read-file-action to avoid deprecated api usage (#252) (diff)
downloadzen-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/compactcas.cpp')
-rw-r--r--zenstore/compactcas.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/zenstore/compactcas.cpp b/zenstore/compactcas.cpp
index 60644847f..7b2c21b0f 100644
--- a/zenstore/compactcas.cpp
+++ b/zenstore/compactcas.cpp
@@ -332,7 +332,7 @@ CasContainerStrategy::Scrub(ScrubContext& Ctx)
if (!BadKeys.empty())
{
- ZEN_WARN("Scrubbing found #{} bad chunks in '{}'", BadKeys.size(), m_RootDirectory / m_ContainerBaseName);
+ ZEN_WARN("Scrubbing found {} bad chunks in '{}'", BadKeys.size(), m_RootDirectory / m_ContainerBaseName);
if (Ctx.RunRecovery())
{
@@ -513,7 +513,7 @@ CasContainerStrategy::MakeIndexSnapshot()
uint64_t EntryCount = 0;
Stopwatch Timer;
const auto _ = MakeGuard([&] {
- ZEN_INFO("wrote store snapshot for '{}' containing #{} entries in {}",
+ ZEN_INFO("wrote store snapshot for '{}' containing {} entries in {}",
m_RootDirectory / m_ContainerBaseName,
EntryCount,
NiceTimeSpanMs(Timer.GetElapsedTimeMs()));
@@ -594,7 +594,7 @@ CasContainerStrategy::ReadIndexFile()
{
Stopwatch Timer;
const auto _ = MakeGuard([&] {
- ZEN_INFO("read store '{}' index containing #{} entries in {}",
+ ZEN_INFO("read store '{}' index containing {} entries in {}",
IndexPath,
Entries.size(),
NiceTimeSpanMs(Timer.GetElapsedTimeMs()));
@@ -647,7 +647,7 @@ CasContainerStrategy::ReadLog(uint64_t SkipEntryCount)
size_t LogEntryCount = 0;
Stopwatch Timer;
const auto _ = MakeGuard([&] {
- ZEN_INFO("read store '{}' log containing #{} entries in {}",
+ ZEN_INFO("read store '{}' log containing {} entries in {}",
m_RootDirectory / m_ContainerBaseName,
LogEntryCount,
NiceTimeSpanMs(Timer.GetElapsedTimeMs()));