This is an automated email from the ASF dual-hosted git repository.
nicknezis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git
The following commit(s) were added to refs/heads/master by this push:
new b161317 Changed heartbeat log statement to debug (#3667)
b161317 is described below
commit b16131740e966549459c7d4bae8d05ce26aef306
Author: Nicholas Nezis <[email protected]>
AuthorDate: Fri Jan 22 00:51:47 2021 -0500
Changed heartbeat log statement to debug (#3667)
---
heron/stmgr/src/cpp/manager/tmanager-client.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/heron/stmgr/src/cpp/manager/tmanager-client.cpp
b/heron/stmgr/src/cpp/manager/tmanager-client.cpp
index 4b170b4..3a960bc 100644
--- a/heron/stmgr/src/cpp/manager/tmanager-client.cpp
+++ b/heron/stmgr/src/cpp/manager/tmanager-client.cpp
@@ -226,7 +226,7 @@ void TManagerClient::OnReConnectTimer() {
}
void TManagerClient::OnHeartbeatTimer() {
- LOG(INFO) << "Sending heartbeat" << std::endl;
+ DLOG(INFO) << "Sending heartbeat" << std::endl;
// The timer has triggered the callback, so reset the timer_id;
heartbeat_timer_id = 0;
SendHeartbeatRequest();