summaryrefslogtreecommitdiffstats
path: root/remoting/protocol
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-29 18:53:41 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-29 18:53:41 +0000
commit416a3c0d426b3ea4bfd9e31deb4857f16152336b (patch)
treed54f7abdfee245865d74ff4e7338d82f1093918c /remoting/protocol
parentd0b4373db41cdfcd4ad380ee5d5e23398b0373c8 (diff)
downloadchromium_src-416a3c0d426b3ea4bfd9e31deb4857f16152336b.zip
chromium_src-416a3c0d426b3ea4bfd9e31deb4857f16152336b.tar.gz
chromium_src-416a3c0d426b3ea4bfd9e31deb4857f16152336b.tar.bz2
Replace LOG(INFO) with VLOG(1) to avoid excessive logging.
BUG=80246 TEST=None Review URL: http://codereview.chromium.org/8043032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103320 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol')
-rw-r--r--remoting/protocol/jingle_session_manager.cc8
-rw-r--r--remoting/protocol/pepper_session_manager.cc6
2 files changed, 7 insertions, 7 deletions
diff --git a/remoting/protocol/jingle_session_manager.cc b/remoting/protocol/jingle_session_manager.cc
index 4105e6f..fcb9005 100644
--- a/remoting/protocol/jingle_session_manager.cc
+++ b/remoting/protocol/jingle_session_manager.cc
@@ -266,14 +266,14 @@ void JingleSessionManager::OnJingleInfo(
for (size_t i = 0; i < stun_hosts.size(); ++i) {
stun_servers += stun_hosts[i].ToString() + "; ";
}
- LOG(INFO) << "Configuring with relay token: " << token
- << ", relays: " << JoinString(relay_hosts, ';')
- << ", stun: " << stun_servers;
+ VLOG(1) << "Configuring with relay token: " << token
+ << ", relays: " << JoinString(relay_hosts, ';')
+ << ", stun: " << stun_servers;
http_port_allocator_->SetRelayToken(token);
http_port_allocator_->SetStunHosts(stun_hosts);
http_port_allocator_->SetRelayHosts(relay_hosts);
} else {
- LOG(INFO) << "Jingle info found but no port allocator.";
+ LOG(WARNING) << "Jingle info found but no port allocator.";
}
listener_->OnSessionManagerInitialized();
diff --git a/remoting/protocol/pepper_session_manager.cc b/remoting/protocol/pepper_session_manager.cc
index 6eeed0c..e732511 100644
--- a/remoting/protocol/pepper_session_manager.cc
+++ b/remoting/protocol/pepper_session_manager.cc
@@ -66,9 +66,9 @@ void PepperSessionManager::OnJingleInfo(
transport_config_.stun_server = stun_hosts[0].ToString();
transport_config_.relay_server = relay_hosts[0];
transport_config_.relay_token = relay_token;
- LOG(INFO) << "STUN server: " << transport_config_.stun_server
- << " Relay server: " << transport_config_.relay_server
- << " Relay token: " << transport_config_.relay_token;
+ VLOG(1) << "STUN server: " << transport_config_.stun_server
+ << " Relay server: " << transport_config_.relay_server
+ << " Relay token: " << transport_config_.relay_token;
listener_->OnSessionManagerInitialized();
}