Fix #694 Reduce the logging level for OpenCLObjectManager

v3.2
demoth 7 years ago committed by Nehon
parent 5aef90da47
commit 8ef1f2ef3b
  1. 4
      jme3-core/src/main/java/com/jme3/opencl/OpenCLObjectManager.java

@ -43,8 +43,8 @@ import java.util.logging.Logger;
*/
public class OpenCLObjectManager {
private static final Logger LOG = Logger.getLogger(OpenCLObjectManager.class.getName());
private static final Level LOG_LEVEL1 = Level.FINER;
private static final Level LOG_LEVEL2 = Level.FINE;
private static final Level LOG_LEVEL1 = Level.FINEST;
private static final Level LOG_LEVEL2 = Level.FINER;
private static final OpenCLObjectManager INSTANCE = new OpenCLObjectManager();
private OpenCLObjectManager() {}

Loading…
Cancel
Save