summaryrefslogtreecommitdiffstats
path: root/src/graph.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph.cc')
-rw-r--r--src/graph.cc3
1 files changed, 2 insertions, 1 deletions
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;
}