Skip to content

Commit dacef6b

Browse files
committed
Print neoctrl-install command for debugging
1 parent 7ab8d12 commit dacef6b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

driver/src/test/java/org/neo4j/driver/v1/util/Neo4jRunner.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,10 @@ private void installNeo4j() throws IOException
154154
List<String> commands = new ArrayList<>();
155155
commands.add( "neoctrl-install" );
156156
String[] split = NEOCTRL_ARGS.trim().split( "\\s+" );
157+
System.out.println( "--- Split neoctrl.args: " + Arrays.toString( split ) );
157158
commands.addAll( asList( split ) );
158159
commands.add( NEO4J_DIR );
160+
System.out.println( "--- Full neoctrl-install command: " + commands );
159161

160162
String tempHomeDir = executeCommand( commands ).trim();
161163
debug( "Downloaded server at `%s`, now renaming to `%s`.", tempHomeDir, HOME_DIR );

0 commit comments

Comments
 (0)