From 7d8335f8753afe33117358bee32f89808eae5d31 Mon Sep 17 00:00:00 2001
From: Vijay Pai <vpai@google.com>
Date: Wed, 27 Jan 2016 12:00:41 -0800
Subject: [PATCH] Don't log newlines

---
 test/cpp/qps/client_async.cc | 2 +-
 test/cpp/qps/server_async.cc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/cpp/qps/client_async.cc b/test/cpp/qps/client_async.cc
index 13e71fec7d..4ab74a9d4c 100644
--- a/test/cpp/qps/client_async.cc
+++ b/test/cpp/qps/client_async.cc
@@ -350,7 +350,7 @@ class AsyncClient : public ClientImpl<StubType, RequestType> {
     int num_threads = config.async_client_threads();
     if (num_threads <= 0) {  // Use dynamic sizing
       num_threads = gpr_cpu_num_cores();
-      gpr_log(GPR_INFO, "Sizing client server to %d threads\n", num_threads);
+      gpr_log(GPR_INFO, "Sizing client server to %d threads", num_threads);
     }
     return num_threads;
   }
diff --git a/test/cpp/qps/server_async.cc b/test/cpp/qps/server_async.cc
index 8e1503b460..ddfeb8638d 100644
--- a/test/cpp/qps/server_async.cc
+++ b/test/cpp/qps/server_async.cc
@@ -89,7 +89,7 @@ class AsyncQpsServerTest : public Server {
     int num_threads = config.async_server_threads();
     if (num_threads <= 0) {  // dynamic sizing
       num_threads = cores();
-      gpr_log(GPR_INFO, "Sizing async server to %d threads\n", num_threads);
+      gpr_log(GPR_INFO, "Sizing async server to %d threads", num_threads);
     }
 
     for (int i = 0; i < num_threads; i++) {
-- 
GitLab