Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(529)

Unified Diff: net/tools/flip_server/mem_cache.cc

Issue 82913011: LOG(INFO) tidying in net/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert dns_fuzz_stub changes Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/flip_server/loadtime_measurement.h ('k') | net/tools/flip_server/streamer_interface.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « net/tools/flip_server/loadtime_measurement.h ('k') | net/tools/flip_server/streamer_interface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698