aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main
diff options
context:
space:
mode:
authorGravatar Nathan Harmata <nharmata@google.com>2015-08-19 01:41:58 +0000
committerGravatar Lukacs Berki <lberki@google.com>2015-08-20 14:47:13 +0000
commitd1ccf34c23bfa668e3e3367b61847e173219cbb4 (patch)
tree551619959428931e167f53362bc19efacdd0b8fb /src/main
parentab16dd6faecc17e7e2b942b729809900e39e9696 (diff)
Log information about the initial baseline DiffAwareness.View. This is especially useful reproducing a clean build merely from the INFO log.
-- MOS_MIGRATED_REVID=100984749
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/DiffAwarenessManager.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/DiffAwarenessManager.java b/src/main/java/com/google/devtools/build/lib/skyframe/DiffAwarenessManager.java
index f57ec0d845..ba199666f2 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/DiffAwarenessManager.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/DiffAwarenessManager.java
@@ -98,12 +98,14 @@ public final class DiffAwarenessManager {
View baselineView = diffAwarenessState.baselineView;
if (baselineView == null) {
+ LOG.info("Initial baseline view for " + pathEntry + " is " + newView);
diffAwarenessState.baselineView = newView;
return BrokenProcessableModifiedFileSet.INSTANCE;
}
ModifiedFileSet diff;
- LOG.info("About to compute diff between " + baselineView + " and " + newView);
+ LOG.info("About to compute diff between " + baselineView + " and " + newView + " for "
+ + pathEntry);
try {
diff = diffAwareness.getDiff(baselineView, newView);
} catch (BrokenDiffAwarenessException e) {