The following worked for me with Neo4J 4.0.3 and the Java Driver 4.0.1
Config config = Config.builder().withLogging(new JULogging(Level.WARNING)).build()
Driver driver = GraphDatabase.driver(boltURL, AuthTokens.basic(username, password), config)
Ho...