diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/base/src/main/kotlin/resolvers/shared/PackageList.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/base/src/main/kotlin/resolvers/shared/PackageList.kt b/plugins/base/src/main/kotlin/resolvers/shared/PackageList.kt index a96cab82..a06365eb 100644 --- a/plugins/base/src/main/kotlin/resolvers/shared/PackageList.kt +++ b/plugins/base/src/main/kotlin/resolvers/shared/PackageList.kt @@ -15,7 +15,8 @@ data class PackageList( return null val packageListStream = kotlin.runCatching { url.readContent() }.onFailure { - println("Failed to download package-list from $url") + println("Failed to download package-list from $url, this might suggest that remote resource is not available," + + " module is empty or dokka output got corrupted") return null }.getOrThrow() |