From 808393fcf01d5211ab062acd3dea46ed8041f829 Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Wed, 10 Apr 2013 12:10:10 -0700 Subject: include mtimes in deplog explain --- src/graph.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/graph.cc b/src/graph.cc index 2614882..b245e52 100644 --- a/src/graph.cc +++ b/src/graph.cc @@ -187,7 +187,8 @@ bool DependencyScan::RecomputeOutputDirty(Edge* edge, // Dirty if the output is newer than the deps. if (deps_mtime && output->mtime() > deps_mtime) { - EXPLAIN("stored deps info out of date for for %s", output->path().c_str()); + EXPLAIN("stored deps info out of date for for %s (%d vs %d)", + output->path().c_str(), deps_mtime, output->mtime()); return true; } -- cgit v0.12