diff --git a/LaunchServer/source/LaunchServer.java b/LaunchServer/source/LaunchServer.java index 2c6d6b0..388c85e 100644 --- a/LaunchServer/source/LaunchServer.java +++ b/LaunchServer/source/LaunchServer.java @@ -492,10 +492,11 @@ @LauncherAPI public static PlayerProfile.Texture getTexture(String url) { + LogHelper.debug("Getting texture: '%s'", url); try { return new PlayerProfile.Texture(url); } catch (FileNotFoundException e) { - return null; + return null; // Simply not found } catch (IOException e) { LogHelper.error(new IOException(String.format("Can't digest texture: '%s'", url), e)); return null;