You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2020/04/09 10:56:13 UTC

[tinkerpop] 01/03: Fixed bug in java options preventing grapes logging CTR

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 8ba99e165d9a45faa22490f72da435ad27476454
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Wed Apr 8 10:39:55 2020 -0400

    Fixed bug in java options preventing grapes logging CTR
---
 gremlin-console/src/main/bin/gremlin.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gremlin-console/src/main/bin/gremlin.sh b/gremlin-console/src/main/bin/gremlin.sh
index c675cc9..c9c8ca5 100755
--- a/gremlin-console/src/main/bin/gremlin.sh
+++ b/gremlin-console/src/main/bin/gremlin.sh
@@ -102,8 +102,9 @@ JVM_OPTS=$(awk -v RS=' ' '!/^$/ {if (!x[$0]++) print}' <<< "${JVM_OPTS}" | grep
 
 if [ -n "$SCRIPT_DEBUG" ]; then
     # in debug mode enable debugging of :install command
-    JVM_OPTS+=( "-Divy.message.logger.level=4 -Dgroovy.grape.report.downloads=true" )
+    JVM_OPTS+=( "-Divy.message.logger.level=4" "-Dgroovy.grape.report.downloads=true" )
     echo "CLASSPATH: $CLASSPATH"
+    echo "JVM_OPTS: $JVM_OPTS"
     set -x
 fi