Skip to content
Snippets Groups Projects
Commit 33447feb authored by Michael Eischer's avatar Michael Eischer
Browse files

Atomic ycsb command line printing

The concurrent log output from the concurrent connection setup can garble the output otherwise
parent 3d76e771
No related branches found
No related tags found
No related merge requests found
......@@ -528,11 +528,12 @@ public final class Client {
private static Properties parseArguments(String[] args) {
Properties props = new Properties();
System.err.print("Command line:");
StringBuilder builder = new StringBuilder();
builder.append("Command line:");
for (String arg : args) {
System.err.print(" " + arg);
builder.append(" ").append(arg);
}
System.err.println();
System.err.println(builder.toString());
Properties fileprops = new Properties();
int argindex = 0;
......
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