File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,10 @@ dependencies {
5858 implementation " io.opentelemetry:opentelemetry-sdk:${ opentelemetryVersion} "
5959
6060 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web
61- compile group : ' org.springframework.boot' , name : ' spring-boot-starter-web' , version : ' 2.1.5.RELEASE'
61+ compile (group : ' org.springframework.boot' , name : ' spring-boot-starter-web' , version : ' 2.1.5.RELEASE' ) {
62+ exclude group : ' org.apache.logging.log4j' , module : ' log4j-to-slf4j'
63+ }
64+ compile ' org.apache.logging.log4j:log4j-to-slf4j:2.16.0'
6265
6366 compile ' org.hibernate:hibernate-core:5.4.3.Final'
6467
Original file line number Diff line number Diff line change 1919import org .hibernate .resource .jdbc .spi .StatementInspector ;
2020
2121public class SCHibernate implements StatementInspector {
22- private static final io .opencensus .trace .Tracer openCensusTracer = io .opencensus .trace .Tracing .getTracer ();
22+ private static final io .opencensus .trace .Tracer openCensusTracer =
23+ io .opencensus .trace .Tracing .getTracer ();
2324
2425 /**
2526 * inspect augments SQL with statements about the current code setup if any. It tries to check if
You can’t perform that action at this time.
0 commit comments