Skip to content

Commit

Permalink
Merge pull request #1516 from Friendseeker/use-right-logger
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n authored Dec 17, 2024
2 parents 8d50f01 + 73811b4 commit a5d3d98
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import xsbti.{

import sbt.util.InterfaceUtil
import sbt.util.Logger
import xsbt.Log.debug

/**
* Define a Java compiler that reports on any discovered source dependencies or
Expand Down Expand Up @@ -169,7 +168,7 @@ final class AnalyzingJavaCompiler private[sbt] (
).toArray
val javaSources: Array[VirtualFile] =
sources.sortBy(_.id).toArray
debug(log, prettyPrintCompilationArguments(args))
log.debug(InterfaceUtil.toSupplier(prettyPrintCompilationArguments(args)))
val success =
javac.run(javaSources, args, output, incToolOptions, reporter, log)
if (!success) {
Expand Down

0 comments on commit a5d3d98

Please sign in to comment.