List of usage examples for io.vertx.mysqlclient MySQLConnection debug
@Fluent MySQLConnection debug(Handler<AsyncResult<Void>> handler);
From source file:examples.MySQLClientExamples.java
public void debugExample(MySQLConnection connection) { connection.debug(ar -> { if (ar.succeeded()) { System.out.println("Debug info dumped to server's STDOUT"); } else {//from w ww. j av a2s. c o m System.out.println("Failure: " + ar.cause().getMessage()); } }); }