DesktopAssetManager: remove weird logging in loadTexture

This commit is contained in:
shadowislord 2015-02-09 21:09:22 -05:00
parent c818ee9c5c
commit 4b079ea480

View File

@ -353,9 +353,7 @@ public class DesktopAssetManager implements AssetManager {
public Texture loadTexture(String name){ public Texture loadTexture(String name){
TextureKey key = new TextureKey(name, true); TextureKey key = new TextureKey(name, true);
key.setGenerateMips(true); key.setGenerateMips(true);
Texture tex = loadTexture(key); return loadTexture(key);
logger.log(Level.FINE, "{0} - {1}", new Object[]{tex, tex.getMinFilter()});
return tex;
} }
public AudioData loadAudio(AudioKey key){ public AudioData loadAudio(AudioKey key){