diff options
author | endolf <[email protected]> | 2009-10-31 11:06:12 +0000 |
---|---|---|
committer | endolf <[email protected]> | 2009-10-31 11:06:12 +0000 |
commit | a75b5068d2d457fcfe96cce1dba51f5685581f31 (patch) | |
tree | a99605cd820faea6a9370c0b2ecbdb10a32af5d9 /plugins/linux | |
parent | 6493ba6bc7e9900a5738c3f0f5e4c10795e4cd1e (diff) |
Use java logging instead of system out in core and plugins.
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@229 e343933a-64c8-49c5-92b1-88f2ce3e89e8
Diffstat (limited to 'plugins/linux')
-rw-r--r-- | plugins/linux/src/java/net/java/games/input/LinuxNativeTypesMap.java | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/plugins/linux/src/java/net/java/games/input/LinuxNativeTypesMap.java b/plugins/linux/src/java/net/java/games/input/LinuxNativeTypesMap.java index 509c108..31d36e7 100644 --- a/plugins/linux/src/java/net/java/games/input/LinuxNativeTypesMap.java +++ b/plugins/linux/src/java/net/java/games/input/LinuxNativeTypesMap.java @@ -25,6 +25,8 @@ */ package net.java.games.input; +import java.util.logging.Logger; + /** * Mapping utility class between native type ints and string names or * Key.Identifiers @@ -32,6 +34,7 @@ package net.java.games.input; */ class LinuxNativeTypesMap { private static LinuxNativeTypesMap INSTANCE = new LinuxNativeTypesMap(); + private static Logger log = Logger.getLogger(LinuxNativeTypesMap.class.getName()); private final Component.Identifier relAxesIDs[]; private final Component.Identifier absAxesIDs[]; @@ -755,7 +758,7 @@ class LinuxNativeTypesMap { try { retval = INSTANCE.relAxesIDs[nativeID]; } catch (ArrayIndexOutOfBoundsException e) { - System.out.println("INSTANCE.relAxesIDis only " + INSTANCE.relAxesIDs.length + " long, so " + nativeID + " not contained"); + log.warn("INSTANCE.relAxesIDis only " + INSTANCE.relAxesIDs.length + " long, so " + nativeID + " not contained"); //ignore, pretend it was null } if(retval == null) { @@ -773,7 +776,7 @@ class LinuxNativeTypesMap { try { retval = INSTANCE.absAxesIDs[nativeID]; } catch (ArrayIndexOutOfBoundsException e) { - System.out.println("INSTANCE.absAxesIDs is only " + INSTANCE.absAxesIDs.length + " long, so " + nativeID + " not contained"); + log.warn("INSTANCE.absAxesIDs is only " + INSTANCE.absAxesIDs.length + " long, so " + nativeID + " not contained"); //ignore, pretend it was null } if(retval == null) { @@ -791,7 +794,7 @@ class LinuxNativeTypesMap { try { retval = INSTANCE.buttonIDs[nativeID]; } catch (ArrayIndexOutOfBoundsException e) { - System.out.println("INSTANCE.buttonIDs is only " + INSTANCE.buttonIDs.length + " long, so " + nativeID + " not contained"); + log.warn("INSTANCE.buttonIDs is only " + INSTANCE.buttonIDs.length + " long, so " + nativeID + " not contained"); //ignore, pretend it was null } if(retval == null) { |