aboutsummaryrefslogtreecommitdiff
path: root/zenserver/zenserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zenserver/zenserver.cpp')
-rw-r--r--zenserver/zenserver.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/zenserver/zenserver.cpp b/zenserver/zenserver.cpp
index 4ad793faa..cf24dc224 100644
--- a/zenserver/zenserver.cpp
+++ b/zenserver/zenserver.cpp
@@ -297,6 +297,8 @@ public:
void Run()
{
+ Scrub();
+
if (m_ProcessMonitor.IsActive())
{
EnqueueTimer();
@@ -398,11 +400,15 @@ public:
void Scrub()
{
+ ZEN_INFO("Storage validation STARTING");
+
ScrubContext Ctx;
m_CasStore->Scrub(Ctx);
m_CidStore->Scrub(Ctx);
m_ProjectStore->Scrub(Ctx);
m_StructuredCacheService->Scrub(Ctx);
+
+ ZEN_INFO("Storage validation DONE");
}
void Flush()