Skip to content

Commit 1364814

Browse files
committed
Dependency resolver now logs for which subdirectory dependencies are resolved
1 parent 9fe6f76 commit 1364814

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/org/javacs/kt/classpath/GradleDependencyResolver.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ private fun getGradleCommand(workspace: Path): Path {
5252
}
5353

5454
private fun readDependenciesViaGradleCLI(projectDirectory: Path): Set<Path>? {
55-
LOG.info("Attempting dependency resolution through CLI...")
55+
LOG.info("Resolving dependencies for {} through Gradle's CLI...", projectDirectory.fileName)
5656
val config = createTemporaryGradleFile()
5757
val gradle = getGradleCommand(projectDirectory)
5858
val cmd = "$gradle -I ${config.absolutePath} kotlinLSPDeps --console=plain"

0 commit comments

Comments
 (0)