From 96dfabafdb22a7d6431bb7a1f5734a2b3800d3d4 Mon Sep 17 00:00:00 2001 From: Sandy W Date: Thu, 13 Oct 2011 14:45:28 -0400 Subject: [PATCH] changed client message output AGAIN --- client/Client.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Client.java b/client/Client.java index 4771ad9..e36de57 100644 --- a/client/Client.java +++ b/client/Client.java @@ -25,7 +25,7 @@ public class Client { // this AtomicLong is used to keep track of the current # of running threads private static AtomicLong runningThreads = new AtomicLong(0); - private static boolean printOutput = false; + private static boolean printOutput = true; public static void main(String[] args) { int menuSelection = 0; @@ -51,7 +51,7 @@ else while (menuSelection != 8) { // if 7, ask which command should be run in the benchmark mode // and how many connections to create if (menuSelection == 7) { - printOutput = true; + printOutput = false; menuSelection = benchmarkMenu(); numProcesses = numProcessesMenu(); }