From b0f1bc1badf00d36330520522da165f3ddaf5bad Mon Sep 17 00:00:00 2001 From: dhyces <10985914+dhyces@users.noreply.github.com> Date: Thu, 13 Jun 2024 11:09:07 -0700 Subject: [PATCH] Update logger --- .../trimmed/impl/client/atlas/OpenPalettedPermutations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/dev/dhyces/trimmed/impl/client/atlas/OpenPalettedPermutations.java b/common/src/main/java/dev/dhyces/trimmed/impl/client/atlas/OpenPalettedPermutations.java index bfa14fc8..f3c6a392 100644 --- a/common/src/main/java/dev/dhyces/trimmed/impl/client/atlas/OpenPalettedPermutations.java +++ b/common/src/main/java/dev/dhyces/trimmed/impl/client/atlas/OpenPalettedPermutations.java @@ -67,7 +67,7 @@ public void run(ResourceManager pResourceManager, Output pOutput) { textures.getSet().forEach(texture -> { Optional imageOptional = pResourceManager.getResource(TEXTURE_ID_CONVERTER.idToFile(texture)); if (imageOptional.isEmpty() && textures.isRequired(texture)) { - Trimmed.LOGGER.error("Cannot locate required " + texture); + Trimmed.LOGGER.error("Cannot locate required {}", texture); } else if (imageOptional.isPresent()) { LazyLoadedImage lazyloadedimage = new LazyLoadedImage(texture, imageOptional.get(), replacePixelsMap.size());