File tree 1 file changed +3
-3
lines changed
x-pack/plugin/sql/qa/src/main/java/org/elasticsearch/xpack/sql/qa/jdbc
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
*/
6
6
package org .elasticsearch .xpack .sql .qa .jdbc ;
7
7
8
+ import org .apache .logging .log4j .LogManager ;
8
9
import org .apache .logging .log4j .Logger ;
9
10
import org .elasticsearch .common .CheckedConsumer ;
10
11
import org .elasticsearch .common .CheckedSupplier ;
11
12
import org .elasticsearch .common .SuppressForbidden ;
12
- import org .elasticsearch .common .logging .Loggers ;
13
13
import org .junit .rules .ExternalResource ;
14
14
15
15
import java .sql .Connection ;
20
20
import java .util .Properties ;
21
21
22
22
public class LocalH2 extends ExternalResource implements CheckedSupplier <Connection , SQLException > {
23
- private final Logger logger = Loggers .getLogger (getClass ());
23
+ private final Logger logger = LogManager .getLogger (getClass ());
24
24
25
25
/*
26
26
* The syntax on the connection string is fairly particular:
@@ -100,4 +100,4 @@ protected void after() {
100
100
public Connection get () throws SQLException {
101
101
return DriverManager .getConnection (url , DEFAULTS );
102
102
}
103
- }
103
+ }
You can’t perform that action at this time.
0 commit comments