aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/util
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-02-29 15:01:54 -0800
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-02-29 15:01:54 -0800
commit8ba6a6b3211efbb90355239899cda7a08d8ffbe2 (patch)
tree74064c1ac1335c2c6acd24e24086b7a9185e6885 /test/cpp/util
parentef7e42660ca1111fdd9841b21f647c89fa186f63 (diff)
parente1dd18a945ea11d1eba412ea0483b3996a222c3b (diff)
Merge pull request #5402 from sreecha/stress_test_scripts
Stress test scripts to launch in GKE
Diffstat (limited to 'test/cpp/util')
-rw-r--r--test/cpp/util/metrics_server.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/util/metrics_server.cc b/test/cpp/util/metrics_server.cc
index 07978d0bdb..34d51eb316 100644
--- a/test/cpp/util/metrics_server.cc
+++ b/test/cpp/util/metrics_server.cc
@@ -57,7 +57,7 @@ long Gauge::Get() {
grpc::Status MetricsServiceImpl::GetAllGauges(
ServerContext* context, const EmptyMessage* request,
ServerWriter<GaugeResponse>* writer) {
- gpr_log(GPR_INFO, "GetAllGauges called");
+ gpr_log(GPR_DEBUG, "GetAllGauges called");
std::lock_guard<std::mutex> lock(mu_);
for (auto it = gauges_.begin(); it != gauges_.end(); it++) {