Skip to content

Commit 94b24a9

Browse files
authored
modrinth: add debug logs for version-from-modrinth-projects (#733)
1 parent de35a4b commit 94b24a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/me/itzg/helpers/modrinth/ModrinthApiClient.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,8 @@ public Mono<List<String>> resolveProjectGameVersions(ProjectRef projectRef,
172172
.flatMap(v -> v.getGameVersions().stream())
173173
.distinct()
174174
.collect(Collectors.toList())
175-
);
175+
)
176+
.doOnNext(versions -> {log.debug("Resolved game versions for {}: {}", projectRef, versions);});
176177
}
177178

178179
public Mono<Path> downloadMrPack(VersionFile versionFile) {

0 commit comments

Comments
 (0)