aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java
diff options
context:
space:
mode:
authorGravatar felly <felly@google.com>2017-07-20 17:36:18 +0200
committerGravatar Klaus Aehlig <aehlig@google.com>2017-07-21 09:12:22 +0200
commit94153a6b0ffdd019866c26130d4ec845f730b29e (patch)
treee0699e5cc4f3161947ffa038a0bc435861293bc1 /src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java
parent00006dcd3202faea815b6621356c277336234151 (diff)
Improve logging on batch stat issues.
PiperOrigin-RevId: 162618754
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java b/src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java
index 2fd7feb357..4bd6dc804b 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/FilesystemValueChecker.java
@@ -265,6 +265,7 @@ public class FilesystemValueChecker {
} catch (IOException e) {
// Batch stat did not work. Log an exception and fall back on system calls.
LoggingUtil.logToRemote(Level.WARNING, "Unable to process batch stat", e);
+ LOG.log(Level.WARNING, "Unable to process batch stat", e);
outputStatJob(dirtyKeys, shard, knownModifiedOutputFiles, sortedKnownModifiedOutputFiles)
.run();
return;