include logging libs

This commit is contained in:
Jonathan Shook 2020-04-01 13:06:33 -05:00
parent ea2a71cc02
commit e9fbe352f2

View File

@ -25,6 +25,7 @@
<dependencies> <dependencies>
<!-- logging --> <!-- logging -->
<!-- TODO: consolidate to Log4j 2 -->
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
@ -36,6 +37,17 @@
<artifactId>logback-classic</artifactId> <artifactId>logback-classic</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<!-- perf testing --> <!-- perf testing -->
<dependency> <dependency>