This is an automated email from the ASF dual-hosted git repository.
junchao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git
The following commit(s) were added to refs/heads/master by this push:
new 24c54323 Change the deploy logging type
24c54323 is described below
commit 24c5432333e8a2d5fd0359673fb3361f9b5bcb58
Author: cjcchen <[email protected]>
AuthorDate: Sat Jan 13 15:54:06 2024 +0800
Change the deploy logging type
Change a log from Info to Error which is used by the deployment scripts.
---
platform/networkstrate/consensus_manager.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/platform/networkstrate/consensus_manager.cpp
b/platform/networkstrate/consensus_manager.cpp
index a1a7bd36..0e8667e2 100644
--- a/platform/networkstrate/consensus_manager.cpp
+++ b/platform/networkstrate/consensus_manager.cpp
@@ -209,7 +209,7 @@ int
ConsensusManager::ProcessHeartBeat(std::unique_ptr<Context> context,
return -1;
}
- LOG(INFO) << "receive public size:" << hb_info.public_keys().size()
+ LOG(ERROR) << "receive public size:" << hb_info.public_keys().size()
<< " primary:" << hb_info.primary()
<< " version:" << hb_info.version()
<< " from region:" << request->region_info().region_id();