我们正在使用Liquibase 3.5.3。我们希望捕获日志文件中的DBMS特定输出,但上述选项(--logLevel = debug,Warning,Error,severe)都不需要。
即:在sql脚本中使用select * from table
时,日志文件具有以下内容
DEBUG 1/4/18 11:55 PM: liquibase: Setting auto commit to false from true
DEBUG 1/4/18 11:55 PM: liquibase: Executing QUERY database command: select count(*) from customer
DEBUG 1/4/18 11:55 PM: liquibase: Create Database Lock Table
但它没有在日志文件中显示结果集,同样适用于“创建表”,“没有更新行”等等。
是否有可能完成这项工作?