File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
src/main/java/io/trino/tempto/internal/listeners Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 67
67
<artifactId >commons-io</artifactId >
68
68
</dependency >
69
69
70
+ <dependency >
71
+ <groupId >io.airlift</groupId >
72
+ <artifactId >log-manager</artifactId >
73
+ <version >284</version >
74
+ </dependency >
75
+
70
76
<dependency >
71
77
<groupId >io.trino.hive</groupId >
72
78
<artifactId >hive-apache</artifactId >
Original file line number Diff line number Diff line change 14
14
15
15
package io .trino .tempto .internal .listeners ;
16
16
17
+ import io .airlift .log .Logging ;
17
18
import org .junit .jupiter .api .extension .AfterAllCallback ;
18
19
import org .junit .jupiter .api .extension .AfterEachCallback ;
19
20
import org .junit .jupiter .api .extension .BeforeAllCallback ;
@@ -33,6 +34,10 @@ public class ProgressLoggingListenerJUnit
33
34
{
34
35
private final static Logger LOGGER = LoggerFactory .getLogger (ProgressLoggingListenerJUnit .class );
35
36
37
+ static {
38
+ Logging .initialize ();
39
+ }
40
+
36
41
private int started ;
37
42
private int succeeded ;
38
43
private int failed ;
You can’t perform that action at this time.
0 commit comments