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

Unified Diff: remoting/host/heartbeat_sender.cc

Issue 86523005: Replace all usage of LOG(INFO) in Chromoting host with HOST_LOG to bypass the presubmit check. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « remoting/host/dns_blackhole_checker.cc ('k') | remoting/host/host_status_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/heartbeat_sender.cc
diff --git a/remoting/host/heartbeat_sender.cc b/remoting/host/heartbeat_sender.cc
index ea345a3fac4915d6747c4d03ecb5da0a1c8eb59e..b489cbe6647f182259b55a35336d5b1b420d3cdb 100644
--- a/remoting/host/heartbeat_sender.cc
+++ b/remoting/host/heartbeat_sender.cc
@@ -7,13 +7,13 @@
#include <math.h>
#include "base/bind.h"
-#include "base/logging.h"
#include "base/message_loop/message_loop_proxy.h"
#include "base/rand_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringize_macros.h"
#include "base/time/time.h"
#include "remoting/base/constants.h"
+#include "remoting/base/logging.h"
#include "remoting/host/server_log_entry.h"
#include "remoting/jingle_glue/iq_sender.h"
#include "remoting/jingle_glue/signal_strategy.h"
@@ -228,7 +228,7 @@ void HeartbeatSender::SetSequenceId(int sequence_id) {
if (!sequence_id_was_set_) {
ResendStanza();
} else {
- LOG(INFO) << "The heartbeat sequence ID has been set more than once: "
+ HOST_LOG << "The heartbeat sequence ID has been set more than once: "
<< "the new value is " << sequence_id;
double delay = pow(2.0, sequence_id_recent_set_num_) *
(1 + base::RandDouble()) * kResendDelayMs;
« no previous file with comments | « remoting/host/dns_blackhole_checker.cc ('k') | remoting/host/host_status_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698