suppress logging during testing

This commit is contained in:
Sean Corfield 2023-12-17 11:32:00 -08:00
parent 902eebe536
commit 60d67d875e

View file

@ -38,6 +38,13 @@
io.zonky.test.postgres/embedded-postgres-binaries-linux-amd64 {:mvn/version "16.1.1"}
io.zonky.test.postgres/embedded-postgres-binaries-windows-amd64 {:mvn/version "16.1.1"}
org.xerial/sqlite-jdbc {:mvn/version "3.44.1.0"}
com.microsoft.sqlserver/mssql-jdbc {:mvn/version "12.4.1.jre11"}}
com.microsoft.sqlserver/mssql-jdbc {:mvn/version "12.4.1.jre11"}
;; use log4j2 to reduce log noise during testing:
org.apache.logging.log4j/log4j-api {:mvn/version "2.22.0"}
;; bridge everything into log4j:
org.apache.logging.log4j/log4j-1.2-api {:mvn/version "2.22.0"}
org.apache.logging.log4j/log4j-jcl {:mvn/version "2.22.0"}
org.apache.logging.log4j/log4j-jul {:mvn/version "2.22.0"}
org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.22.0"}}
:jvm-opts ["-Dlog4j2.configurationFile=log4j2-info.properties"]
:exec-fn cognitect.test-runner.api/test}}}