aboutsummaryrefslogtreecommitdiff
path: root/zenserver/projectstore.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2022-03-31 10:20:06 +0200
committerDan Engelbrecht <[email protected]>2022-03-31 11:29:28 +0200
commit27224ec4da12a7d80db13d8b2f3a67ec9335ee14 (patch)
tree9bb2c3bfef12182374e14ce15741bb9a8c027bf5 /zenserver/projectstore.cpp
parentTruncate migrated and new blocks after gc to save disk space (diff)
downloadzen-27224ec4da12a7d80db13d8b2f3a67ec9335ee14.tar.xz
zen-27224ec4da12a7d80db13d8b2f3a67ec9335ee14.zip
Don hard fail on removing files we no longer care about
Diffstat (limited to 'zenserver/projectstore.cpp')
-rw-r--r--zenserver/projectstore.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/zenserver/projectstore.cpp b/zenserver/projectstore.cpp
index 6b18bce3f..bee143bd8 100644
--- a/zenserver/projectstore.cpp
+++ b/zenserver/projectstore.cpp
@@ -972,9 +972,8 @@ void
ProjectStore::GatherReferences(GcContext& GcCtx)
{
Stopwatch Timer;
- const auto Guard = MakeGuard([this, &Timer] {
- ZEN_INFO("project store gathered all references in {}", NiceTimeSpanMs(Timer.GetElapsedTimeMs()));
- });
+ const auto Guard =
+ MakeGuard([this, &Timer] { ZEN_INFO("project store gathered all references in {}", NiceTimeSpanMs(Timer.GetElapsedTimeMs())); });
DiscoverProjects();