Skip to content

Commit

Permalink
Change the deploy logging type
Browse files Browse the repository at this point in the history
Change a log from Info to Error which is used by the deployment scripts.
  • Loading branch information
cjcchen authored Jan 13, 2024
1 parent 7b7df24 commit 24c5432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/networkstrate/consensus_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 24c5432

Please sign in to comment.