diff --git a/src/main/java/glowredman/txloader/RemoteHandler.java b/src/main/java/glowredman/txloader/RemoteHandler.java index cd97ddb..09e3797 100644 --- a/src/main/java/glowredman/txloader/RemoteHandler.java +++ b/src/main/java/glowredman/txloader/RemoteHandler.java @@ -85,7 +85,7 @@ static void getAssets() { try { jAsset.download(file); } catch (Exception e) { - TXLoaderCore.LOGGER.error("Failed to get asset!", e); + TXLoaderCore.LOGGER.error("Failed to get asset! Path: " + asset.resourceLocation, e); failed++; } continue; @@ -121,7 +121,7 @@ static void getAssets() { InputStream is = jarFile.getInputStream(jarFile.getJarEntry("assets/" + asset.resourceLocation)); FileUtils.copyInputStreamToFile(is, file); } catch (Exception e) { - TXLoaderCore.LOGGER.error("Failed to extract asset from jar!", e); + TXLoaderCore.LOGGER.error("Failed to extract asset from jar! Path: " + asset.resourceLocation, e); failed++; continue; }