Reduce LOG(INFO)'s from StarterClient
Change-Id: I0313fac05f7180e997d3fb3625cba58c34aa00f9
Signed-off-by: James Kuszmaul <james.kuszmaul@bluerivertech.com>
diff --git a/aos/starter/starter_rpc_lib.cc b/aos/starter/starter_rpc_lib.cc
index 9f666ff..b0b9db3 100644
--- a/aos/starter/starter_rpc_lib.cc
+++ b/aos/starter/starter_rpc_lib.cc
@@ -67,19 +67,19 @@
<< node->name()->string_view();
if (!configuration::ChannelIsReadableOnNode(channel,
event_loop_->node())) {
- LOG(INFO) << "Status channel "
- << configuration::StrippedChannelToString(channel)
- << " is not readable on "
- << event_loop_->node()->name()->string_view();
+ VLOG(1) << "Status channel "
+ << configuration::StrippedChannelToString(channel)
+ << " is not readable on "
+ << event_loop_->node()->name()->string_view();
} else if (!configuration::ChannelIsReadableOnNode(
StarterRpcChannelForNode(event_loop_->configuration(),
event_loop_->node()),
node)) {
// Don't attempt to construct a status fetcher if the other node won't
// even be able to receive our commands.
- LOG(INFO) << "StarterRpc channel for "
- << event_loop_->node()->name()->string_view()
- << " is not readable on " << node->name()->string_view();
+ VLOG(1) << "StarterRpc channel for "
+ << event_loop_->node()->name()->string_view()
+ << " is not readable on " << node->name()->string_view();
} else {
status_fetchers_[node->name()->str()] =
event_loop_->MakeFetcher<Status>(channel->name()->string_view());