Skip to content

Commit

Permalink
Update logger
Browse files Browse the repository at this point in the history
  • Loading branch information
dhyces committed Jun 13, 2024
1 parent c25ea8a commit b0f1bc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void run(ResourceManager pResourceManager, Output pOutput) {
textures.getSet().forEach(texture -> {
Optional<Resource> 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());

Expand Down

0 comments on commit b0f1bc1

Please sign in to comment.