Skip to content

Commit

Permalink
fix: remove enforced INFO level for license
Browse files Browse the repository at this point in the history
  • Loading branch information
remisultan committed Mar 9, 2023
1 parent 1fa97d5 commit 0515ec5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
8 changes: 0 additions & 8 deletions gravitee-node-license/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,6 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</dependency>

<!-- Spring dependencies -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
package io.gravitee.node.license;

import ch.qos.logback.classic.Level;
import io.gravitee.common.service.AbstractService;
import io.gravitee.node.api.Node;
import io.gravitee.node.license.license3j.License3JLicense;
Expand Down Expand Up @@ -119,9 +118,6 @@ public io.gravitee.node.api.license.License getLicense() {
protected void doStart() throws Exception {
super.doStart();

// Ensure log level for license module to INFO
((ch.qos.logback.classic.Logger) logger).setLevel(Level.INFO);

this.loadLicense();
this.startLicenseChecker();
this.startLicenseWatcher();
Expand Down

0 comments on commit 0515ec5

Please sign in to comment.