No public description

PiperOrigin-RevId: 642015810
diff --git a/centipede/centipede.cc b/centipede/centipede.cc
index 812cc6e..9de2319 100644
--- a/centipede/centipede.cc
+++ b/centipede/centipede.cc
@@ -147,6 +147,7 @@
   std::vector<std::string> paths;
   size_t total_paths = 0;
   for (const std::string &path : RemoteListFiles(dir, /*recursively=*/true)) {
+    LOG(INFO) << "Reading file: " << path;
     size_t filename_hash = std::hash<std::string>{}(path);
     sharded_paths[filename_hash % env.total_shards].push_back(path);
     ++total_paths;
@@ -178,6 +179,7 @@
       std::string input;
       RemoteFileGetContents(path, input);
       if (input.empty() || existing_hashes.contains(Hash(input))) {
+        LOG(INFO) << "Ignoring input: " << input << " from path " << path;
         ++inputs_ignored;
         continue;
       }