Fix cout error string

pull/7100/head
Sree Kuchibhotla 9 years ago
parent ad57b266c7
commit 18a0e47970
  1. 2
      test/cpp/interop/metrics_client.cc

@ -84,7 +84,7 @@ bool PrintMetrics(std::unique_ptr<MetricsService::Stub> stub, bool total_only,
}
overall_qps += gauge_response.long_value();
} else {
std::cout << "Gauge %s is not a long value" << gauge_response.name()
std::cout << "Gauge '" << gauge_response.name() << "' is not long valued"
<< std::endl;
}
}

Loading…
Cancel
Save