include mtimes in deplog explain
authorEvan Martin <martine@danga.com>
Wed, 10 Apr 2013 19:10:10 +0000 (12:10 -0700)
committerEvan Martin <martine@danga.com>
Wed, 10 Apr 2013 19:10:10 +0000 (12:10 -0700)
src/graph.cc

index 2614882..b245e52 100644 (file)
@@ -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;
   }