Skip to content

Commit 7effca1

Browse files
committed
Output resolved path
1 parent 1071ff4 commit 7effca1

File tree

1 file changed

+1
-1
lines changed
  • shared/src/main/kotlin/org/javacs/kt/util

1 file changed

+1
-1
lines changed

shared/src/main/kotlin/org/javacs/kt/util/Utils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ inline fun <T> tryResolving(what: String, resolver: () -> T?): T? {
9090
try {
9191
val resolved = resolver()
9292
if (resolved != null) {
93-
LOG.info("Successfully resolved {}", what)
93+
LOG.info("Successfully resolved {} to {}", what, resolved)
9494
return resolved
9595
} else {
9696
LOG.info("Could not resolve {} as it is null", what)

0 commit comments

Comments
 (0)