aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver
diff options
context:
space:
mode:
Diffstat (limited to 'src/zenserver')
-rw-r--r--src/zenserver/cache/structuredcache.cpp4
-rw-r--r--src/zenserver/projectstore/projectstore.cpp2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/zenserver/cache/structuredcache.cpp b/src/zenserver/cache/structuredcache.cpp
index c9f942033..566df73c1 100644
--- a/src/zenserver/cache/structuredcache.cpp
+++ b/src/zenserver/cache/structuredcache.cpp
@@ -363,6 +363,10 @@ HttpStructuredCacheService::ScrubStorage(ScrubContext& Ctx)
return;
}
+ ZenCacheStore::Info Info = m_CacheStore.GetInfo();
+
+ ZEN_INFO("scrubbing '{}'", Info.Config.BasePath);
+
m_LastScrubTime = Ctx.ScrubTimestamp();
m_CidStore.ScrubStorage(Ctx);
diff --git a/src/zenserver/projectstore/projectstore.cpp b/src/zenserver/projectstore/projectstore.cpp
index 381f163aa..03c1e8927 100644
--- a/src/zenserver/projectstore/projectstore.cpp
+++ b/src/zenserver/projectstore/projectstore.cpp
@@ -1755,6 +1755,8 @@ ProjectStore::Flush()
void
ProjectStore::ScrubStorage(ScrubContext& Ctx)
{
+ ZEN_INFO("scrubbing '{}'", m_ProjectBasePath);
+
DiscoverProjects();
std::vector<Ref<Project>> Projects;