diff options
author | endolf <[email protected]> | 2011-03-23 18:54:48 +0000 |
---|---|---|
committer | endolf <[email protected]> | 2011-03-23 18:54:48 +0000 |
commit | bda4b67c0dd117d87c0ba93808afc7b63c84e22b (patch) | |
tree | e2343f101a91923aefd25286ba2bc247c52f7853 | |
parent | 04c5eaaab5dde46fcd819061b1dded5a0998de76 (diff) |
Reduce the logging during normal running.
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@245 e343933a-64c8-49c5-92b1-88f2ce3e89e8
-rw-r--r-- | coreAPI/src/java/net/java/games/input/DefaultControllerEnvironment.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreAPI/src/java/net/java/games/input/DefaultControllerEnvironment.java b/coreAPI/src/java/net/java/games/input/DefaultControllerEnvironment.java index 833fe6f..431a9ff 100644 --- a/coreAPI/src/java/net/java/games/input/DefaultControllerEnvironment.java +++ b/coreAPI/src/java/net/java/games/input/DefaultControllerEnvironment.java @@ -143,10 +143,10 @@ class DefaultControllerEnvironment extends ControllerEnvironment { pluginClasses = pluginClasses + " net.java.games.input.DirectInputEnvironmentPlugin"; } else if (osName.startsWith("Windows")) { log.warning("Found unknown Windows version: " + osName); - log.info("Attempting to use default windows plug-in."); + log.warning("Attempting to use default windows plug-in."); pluginClasses = pluginClasses + " net.java.games.input.DirectAndRawInputEnvironmentPlugin"; } else { - log.info("Trying to use default plugin, OS name " + osName +" not recognised"); + log.warning("Trying to use default plugin, OS name " + osName +" not recognised"); } } @@ -155,7 +155,7 @@ class DefaultControllerEnvironment extends ControllerEnvironment { String className = pluginClassTok.nextToken(); try { if(!loadedPlugins.contains(className)) { - log.info("Loading: " + className); + log.fine("Loading: " + className); Class ceClass = Class.forName(className); ControllerEnvironment ce = (ControllerEnvironment) ceClass.newInstance(); if(ce.isSupported()) { |