From 9d428b6a01e33783f578387cb3234fe89fe82379 Mon Sep 17 00:00:00 2001
From: Chris Larsen <clarsen@euphoriaaudio.com>
Date: Mon, 12 Feb 2018 14:05:13 -0800
Subject: [PATCH] [core] Fix an issue in #981 where the newline was missing
 after printing out (#1084)

the command line, thus leaving the YCSB version on the same line.

(cherry picked from commit 88ffdbbb8f4efd49a710c3602d16cdb9f8b37a14)
---
 core/src/main/java/com/yahoo/ycsb/Client.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/core/src/main/java/com/yahoo/ycsb/Client.java b/core/src/main/java/com/yahoo/ycsb/Client.java
index e8b70600..00b1e378 100644
--- a/core/src/main/java/com/yahoo/ycsb/Client.java
+++ b/core/src/main/java/com/yahoo/ycsb/Client.java
@@ -977,6 +977,7 @@ public final class Client {
     for (String arg : args) {
       System.err.print(" " + arg);
     }
+    System.err.println();
 
     Properties fileprops = new Properties();
     int argindex = 0;
-- 
GitLab