Skip to content

Commit

Permalink
feat: Routes logs from slf4j to java logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
damencho committed Sep 28, 2022
1 parent f153ab2 commit e8b20f0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion jvb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<properties>
<assembly.skipAssembly>false</assembly.skipAssembly>
<exec.mainClass>org.jitsi.videobridge.MainKt</exec.mainClass>
<slf4j.version>1.7.32</slf4j.version>
</properties>

<profiles>
Expand Down Expand Up @@ -114,7 +115,12 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.32</version>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down

0 comments on commit e8b20f0

Please sign in to comment.