Skip to content

Commit

Permalink
remove logger references
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Feb 22, 2024
1 parent 024a5b2 commit a63fbb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/main/java/io/cryostat/Producers.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,7 @@ public static ScheduledExecutorService produceScheduledExecutorService() {
@RequestScoped
@DefaultBean
public static InterruptibleReportGenerator produceInterruptibleReportGenerator() {
return new InterruptibleReportGenerator(
ForkJoinPool.commonPool(), io.cryostat.core.log.Logger.INSTANCE);
return new InterruptibleReportGenerator(ForkJoinPool.commonPool());
}

@Produces
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/cryostat/discovery/JDPDiscovery.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class JDPDiscovery implements Consumer<JvmDiscoveryEvent> {
@Produces
@ApplicationScoped
static JvmDiscoveryClient produceJvmDiscoveryClient() {
return new JvmDiscoveryClient(io.cryostat.core.log.Logger.INSTANCE);
return new JvmDiscoveryClient();
}

@Inject Logger logger;
Expand Down

0 comments on commit a63fbb8

Please sign in to comment.