DesktopAssetManager: remove weird logging in loadTexture

experimental
shadowislord 10 years ago
parent c818ee9c5c
commit 4b079ea480
  1. 4
      jme3-core/src/main/java/com/jme3/asset/DesktopAssetManager.java

@ -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){

Loading…
Cancel
Save