From 71224a9953341368aa03efcf5c4fb557ae809568 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Tue, 1 May 2012 08:42:35 -0700 Subject: Add .ninja_log load time to metrics. On my system, it takes 22% of the empty build time for chrome. --- src/build_log.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/build_log.cc b/src/build_log.cc index 0cecd70..4ad005f 100644 --- a/src/build_log.cc +++ b/src/build_log.cc @@ -21,6 +21,7 @@ #include "build.h" #include "graph.h" +#include "metrics.h" #include "util.h" // Implementation details: @@ -104,6 +105,7 @@ void BuildLog::Close() { } bool BuildLog::Load(const string& path, string* err) { + METRIC_RECORD(".ninja_log load"); FILE* file = fopen(path.c_str(), "r"); if (!file) { if (errno == ENOENT) -- cgit v0.12