diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/main/main.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/buildtool/main/main.cpp b/src/buildtool/main/main.cpp index 0c5c0c15..895fd517 100644 --- a/src/buildtool/main/main.cpp +++ b/src/buildtool/main/main.cpp @@ -1058,8 +1058,9 @@ auto main(int argc, char* argv[]) -> int { auto uncached = stats.ExportsUncachedCounter(); auto not_eligible = stats.ExportsNotEligibleCounter(); Logger::Log( - cached + uncached + not_eligible > 0 ? LogLevel::Info - : LogLevel::Debug, + served + cached + uncached + not_eligible > 0 + ? LogLevel::Info + : LogLevel::Debug, "Export targets found: {} cached, {}{} uncached, " "{} not eligible for caching", cached, |