| Index: net/tools/flip_server/mem_cache.cc
 | 
| diff --git a/net/tools/flip_server/mem_cache.cc b/net/tools/flip_server/mem_cache.cc
 | 
| index 42d93430ee3704053105e308e2bab4ed5b661039..d87c086321864945f5f54f95c893a1ca1c216670 100644
 | 
| --- a/net/tools/flip_server/mem_cache.cc
 | 
| +++ b/net/tools/flip_server/mem_cache.cc
 | 
| @@ -160,7 +160,7 @@ void MemoryCache::ReadAndStoreFileContents(const char* filename) {
 | 
|        LOG(ERROR) << "Unable to make forward progress, or error"
 | 
|          " framing file: " << filename;
 | 
|        if (framer.Error()) {
 | 
| -        LOG(INFO) << "********************************************ERROR!";
 | 
| +        VLOG(0) << "********************************************ERROR!";
 | 
|          return;
 | 
|        }
 | 
|        return;
 | 
| @@ -196,7 +196,7 @@ void MemoryCache::ReadAndStoreFileContents(const char* filename) {
 | 
|    DCHECK_EQ(std::string(filename).substr(0, cwd_.size()), cwd_);
 | 
|    DCHECK_EQ(filename[cwd_.size()], '/');
 | 
|    std::string filename_stripped = std::string(filename).substr(cwd_.size() + 1);
 | 
| -  LOG(INFO) << "Adding file (" << visitor.body.length() << " bytes): "
 | 
| +  VLOG(0) << "Adding file (" << visitor.body.length() << " bytes): "
 | 
|              << filename_stripped;
 | 
|    size_t slash_pos = filename_stripped.find('/');
 | 
|    if (slash_pos == std::string::npos) {
 | 
| 
 |