Skip to content

Commit

Permalink
changed client message output AGAIN
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandy W committed Oct 13, 2011
1 parent 42b2ae6 commit 96dfaba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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();
}
Expand Down

0 comments on commit 96dfaba

Please sign in to comment.