Fix #694 Reduce the logging level for OpenCLObjectManager

This commit is contained in:
demoth 2018-01-15 21:59:04 +03:00 committed by Nehon
parent 5aef90da47
commit 8ef1f2ef3b

View File

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