Skip to content

Commit

Permalink
Add download location to error log
Browse files Browse the repository at this point in the history
Signed-off-by: Taylor Smock <[email protected]>
  • Loading branch information
tsmock committed Jan 6, 2025
1 parent f47a8ad commit 44b3aba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ private static void extractBinaries(ProgressMonitor updateable, String platform,
if (response.getResponseCode() != 200) {
Logging.error(response.fetchContent());
throw new IllegalStateException("Valhalla server download location returned HTTP error code "
+ response.getResponseCode() + ": " + response.getResponseMessage());
+ response.getResponseCode() + ": " + response.getResponseMessage() + '\n' + downloadLocation);
}
updateable.setTicks(0);
try (InputStream is = response.getContent();
Expand Down

0 comments on commit 44b3aba

Please sign in to comment.