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

Unified Diff: net/tools/net_watcher/net_watcher.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/streamer_interface.cc ('k') | net/tools/quic/end_to_end_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/net_watcher/net_watcher.cc
diff --git a/net/tools/net_watcher/net_watcher.cc b/net/tools/net_watcher/net_watcher.cc
index 67eb124f8ac5f05e220a86812e698763ea410f6c..f1246b68f069645930ace886821468780e812232 100644
--- a/net/tools/net_watcher/net_watcher.cc
+++ b/net/tools/net_watcher/net_watcher.cc
@@ -90,25 +90,25 @@ class NetWatcher :
// net::NetworkChangeNotifier::IPAddressObserver implementation.
virtual void OnIPAddressChanged() OVERRIDE {
- LOG(INFO) << "OnIPAddressChanged()";
+ VLOG(0) << "OnIPAddressChanged()";
}
// net::NetworkChangeNotifier::ConnectionTypeObserver implementation.
virtual void OnConnectionTypeChanged(
net::NetworkChangeNotifier::ConnectionType type) OVERRIDE {
- LOG(INFO) << "OnConnectionTypeChanged("
+ VLOG(0) << "OnConnectionTypeChanged("
<< ConnectionTypeToString(type) << ")";
}
// net::NetworkChangeNotifier::DNSObserver implementation.
virtual void OnDNSChanged() OVERRIDE {
- LOG(INFO) << "OnDNSChanged()";
+ VLOG(0) << "OnDNSChanged()";
}
// net::NetworkChangeNotifier::NetworkChangeObserver implementation.
virtual void OnNetworkChanged(
net::NetworkChangeNotifier::ConnectionType type) OVERRIDE {
- LOG(INFO) << "OnNetworkChanged("
+ VLOG(0) << "OnNetworkChanged("
<< ConnectionTypeToString(type) << ")";
}
@@ -116,7 +116,7 @@ class NetWatcher :
virtual void OnProxyConfigChanged(
const net::ProxyConfig& config,
net::ProxyConfigService::ConfigAvailability availability) OVERRIDE {
- LOG(INFO) << "OnProxyConfigChanged("
+ VLOG(0) << "OnProxyConfigChanged("
<< ProxyConfigToString(config) << ", "
<< ConfigAvailabilityToString(availability) << ")";
}
@@ -168,7 +168,7 @@ int main(int argc, char* argv[]) {
proxy_config_service->AddObserver(&net_watcher);
- LOG(INFO) << "Initial connection type: "
+ VLOG(0) << "Initial connection type: "
<< ConnectionTypeToString(
network_change_notifier->GetCurrentConnectionType());
@@ -176,12 +176,12 @@ int main(int argc, char* argv[]) {
net::ProxyConfig config;
const net::ProxyConfigService::ConfigAvailability availability =
proxy_config_service->GetLatestProxyConfig(&config);
- LOG(INFO) << "Initial proxy config: "
+ VLOG(0) << "Initial proxy config: "
<< ProxyConfigToString(config) << ", "
<< ConfigAvailabilityToString(availability);
}
- LOG(INFO) << "Watching for network events...";
+ VLOG(0) << "Watching for network events...";
// Start watching for events.
network_loop.Run();
« no previous file with comments | « net/tools/flip_server/streamer_interface.cc ('k') | net/tools/quic/end_to_end_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698