Skip to content
Snippets Groups Projects
Commit 7d8335f8 authored by Vijay Pai's avatar Vijay Pai
Browse files

Don't log newlines

parent 7a984f0e
No related branches found
No related tags found
No related merge requests found
...@@ -350,7 +350,7 @@ class AsyncClient : public ClientImpl<StubType, RequestType> { ...@@ -350,7 +350,7 @@ class AsyncClient : public ClientImpl<StubType, RequestType> {
int num_threads = config.async_client_threads(); int num_threads = config.async_client_threads();
if (num_threads <= 0) { // Use dynamic sizing if (num_threads <= 0) { // Use dynamic sizing
num_threads = gpr_cpu_num_cores(); 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; return num_threads;
} }
......
...@@ -89,7 +89,7 @@ class AsyncQpsServerTest : public Server { ...@@ -89,7 +89,7 @@ class AsyncQpsServerTest : public Server {
int num_threads = config.async_server_threads(); int num_threads = config.async_server_threads();
if (num_threads <= 0) { // dynamic sizing if (num_threads <= 0) { // dynamic sizing
num_threads = cores(); 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++) { for (int i = 0; i < num_threads; i++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment