File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
src/main/java/io/trino/tempto/internal/listeners Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 6767 <artifactId >commons-io</artifactId >
6868 </dependency >
6969
70+ <dependency >
71+ <groupId >io.airlift</groupId >
72+ <artifactId >log-manager</artifactId >
73+ <version >275</version >
74+ <exclusions >
75+ <exclusion >
76+ <groupId >org.slf4j</groupId >
77+ <artifactId >log4j-over-slf4j</artifactId >
78+ </exclusion >
79+ </exclusions >
80+ </dependency >
81+
7082 <dependency >
7183 <groupId >io.trino.hive</groupId >
7284 <artifactId >hive-apache</artifactId >
Original file line number Diff line number Diff line change 1414
1515package io .trino .tempto .internal .listeners ;
1616
17+ import io .airlift .log .Logging ;
1718import org .junit .jupiter .api .extension .AfterAllCallback ;
1819import org .junit .jupiter .api .extension .AfterEachCallback ;
1920import org .junit .jupiter .api .extension .BeforeAllCallback ;
@@ -33,6 +34,10 @@ public class ProgressLoggingListenerJUnit
3334{
3435 private final static Logger LOGGER = LoggerFactory .getLogger (ProgressLoggingListenerJUnit .class );
3536
37+ static {
38+ Logging .initialize ();
39+ }
40+
3641 private int started ;
3742 private int succeeded ;
3843 private int failed ;
You can’t perform that action at this time.
0 commit comments