From 1fb9461b67ee49aa72a55a444aec006ee2594cee Mon Sep 17 00:00:00 2001 From: Eric Fellheimer Date: Wed, 22 Jun 2016 19:03:35 +0000 Subject: Add some additional logging when packages are not found in the bulk lookup. -- MOS_MIGRATED_REVID=125592223 --- .../build/lib/skyframe/GraphBackedRecursivePackageProvider.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main/java/com/google/devtools/build/lib') diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/GraphBackedRecursivePackageProvider.java b/src/main/java/com/google/devtools/build/lib/skyframe/GraphBackedRecursivePackageProvider.java index c65bc088b8..26e5f1bbb3 100644 --- a/src/main/java/com/google/devtools/build/lib/skyframe/GraphBackedRecursivePackageProvider.java +++ b/src/main/java/com/google/devtools/build/lib/skyframe/GraphBackedRecursivePackageProvider.java @@ -112,7 +112,8 @@ public final class GraphBackedRecursivePackageProvider implements RecursivePacka SetView unknownKeys = Sets.difference(pkgKeys, packages.keySet()); if (!Iterables.isEmpty(unknownKeys)) { - LOGGER.warning("Unable to find " + unknownKeys + " in the batch lookup of " + pkgKeys); + LOGGER.warning("Unable to find " + unknownKeys + " in the batch lookup of " + pkgKeys + + ". Successfully looked up " + packages.keySet()); } for (Map.Entry missingOrExceptionEntry : graph.getMissingAndExceptions(unknownKeys).entrySet()) { -- cgit v1.2.3