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

Unified Diff: net/tools/flip_server/flip_in_mem_edsm_server.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/epoll_server/epoll_server.cc ('k') | net/tools/flip_server/loadtime_measurement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/flip_server/flip_in_mem_edsm_server.cc
diff --git a/net/tools/flip_server/flip_in_mem_edsm_server.cc b/net/tools/flip_server/flip_in_mem_edsm_server.cc
index 79f3e5b9af72450323903f31402beb665eed3224..36398074cdfde7c1baa5e56ad5ea34865c4ca9e7 100644
--- a/net/tools/flip_server/flip_in_mem_edsm_server.cc
+++ b/net/tools/flip_server/flip_in_mem_edsm_server.cc
@@ -275,26 +275,26 @@ int main (int argc, char**argv)
settings.lock_log = logging::DONT_LOCK_LOG_FILE;
logging::InitLogging(settings);
- LOG(INFO) << "Flip SPDY proxy started with configuration:";
- LOG(INFO) << "Logging destination : " << g_proxy_config.log_destination_;
- LOG(INFO) << "Log file : " << g_proxy_config.log_filename_;
- LOG(INFO) << "Forward IP Header : "
+ VLOG(0) << "Flip SPDY proxy started with configuration:";
+ VLOG(0) << "Logging destination : " << g_proxy_config.log_destination_;
+ VLOG(0) << "Log file : " << g_proxy_config.log_filename_;
+ VLOG(0) << "Forward IP Header : "
<< (net::SpdySM::forward_ip_header().length() ?
net::SpdySM::forward_ip_header() : "<disabled>");
- LOG(INFO) << "Wait for interfaces : " << (wait_for_iface?"true":"false");
- LOG(INFO) << "Accept backlog size : " << FLAGS_accept_backlog_size;
- LOG(INFO) << "Accepts per wake : " << FLAGS_accepts_per_wake;
- LOG(INFO) << "Disable nagle : "
+ VLOG(0) << "Wait for interfaces : " << (wait_for_iface?"true":"false");
+ VLOG(0) << "Accept backlog size : " << FLAGS_accept_backlog_size;
+ VLOG(0) << "Accepts per wake : " << FLAGS_accepts_per_wake;
+ VLOG(0) << "Disable nagle : "
<< (FLAGS_disable_nagle?"true":"false");
- LOG(INFO) << "Reuseport : "
+ VLOG(0) << "Reuseport : "
<< (FLAGS_reuseport?"true":"false");
- LOG(INFO) << "Force SPDY : "
+ VLOG(0) << "Force SPDY : "
<< (FLAGS_force_spdy?"true":"false");
- LOG(INFO) << "SSL session expiry : "
+ VLOG(0) << "SSL session expiry : "
<< g_proxy_config.ssl_session_expiry_;
- LOG(INFO) << "SSL disable compression : "
+ VLOG(0) << "SSL disable compression : "
<< g_proxy_config.ssl_disable_compression_;
- LOG(INFO) << "Connection idle timeout : "
+ VLOG(0) << "Connection idle timeout : "
<< g_proxy_config.idle_socket_timeout_s_;
// Proxy Acceptors
« no previous file with comments | « net/tools/epoll_server/epoll_server.cc ('k') | net/tools/flip_server/loadtime_measurement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698