diff options
| author | Dan Engelbrecht <[email protected]> | 2024-11-25 11:52:21 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-11-25 11:52:21 +0100 |
| commit | 80b269fb80a596f9341fc1db276d472fac9f020d (patch) | |
| tree | a4dd3a2977a672e6c6eac1e016bfc25e286edadb /src | |
| parent | split zencore/memory.h -> memoryview.h, memcmp.h (#228) (diff) | |
| download | zen-80b269fb80a596f9341fc1db276d472fac9f020d.tar.xz zen-80b269fb80a596f9341fc1db276d472fac9f020d.zip | |
add missing projectstore expire time in gc log (#227)
Diffstat (limited to 'src')
| -rw-r--r-- | src/zenstore/gc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenstore/gc.cpp b/src/zenstore/gc.cpp index b2b574799..15dff40f5 100644 --- a/src/zenstore/gc.cpp +++ b/src/zenstore/gc.cpp @@ -2398,6 +2398,7 @@ GcScheduler::CollectGarbage(const GcClock::TimePoint& CacheExpireTime, SB.Append(fmt::format(" Enable validation: {}\n", Settings.EnableValidation)); } SB.Append(fmt::format(" Cache cutoff time: {}\n", Settings.CacheExpireTime)); + SB.Append(fmt::format(" Project store cutoff time: {}\n", Settings.ProjectStoreExpireTime)); }; { |