We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ffca5 commit 8f85d7dCopy full SHA for 8f85d7d
Sources/SwiftJavaBootstrapJavaTool/SwiftJavaBootstrapJavaTool.swift
@@ -48,8 +48,10 @@ final class SwiftJavaBootstrapJavaTool {
48
49
assert(args.removeFirst() == "--output-directory")
50
let outputDirectoryPath = args.removeFirst()
51
-
52
- let config = try readConfiguration(configPath: URL(fileURLWithPath: configPath))
+
+ let configPathURL = URL(fileURLWithPath: configPath)
53
+ print("[debug][swift-java-bootstrap] Load config: \(configPathURL.absoluteString)")
54
+ let config = try readConfiguration(configPath: configPathURL)
55
56
// We only support a single dependency right now.
57
let localGradleProjectDependencyName = (config.dependencies ?? []).filter {
0 commit comments