Index: /trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIElementFactory.java
===================================================================
--- /trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIElementFactory.java	(revision 723)
+++ /trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIElementFactory.java	(revision 724)
@@ -10,5 +10,6 @@
 import java.util.Properties;
 import java.util.logging.Level;
-import java.util.logging.Logger;
+
+import de.ugoe.cs.util.console.Console;
 
 /**
@@ -86,7 +87,6 @@
 
                 if (!IGUIElement.class.isAssignableFrom(clazz)) {
-                    Logger.getLogger(this.getClass().getName()).warning
-                        ("configured GUI element representing class " + className +
-                         " is no valid GUIElement " + "derivate.");
+                    Console.traceln(Level.WARNING, "configured GUI element representing class " +
+                                    className + " is no valid GUIElement derivate.");
 
                     return null;
@@ -143,7 +143,6 @@
             }
             catch (ClassNotFoundException e) {
-                Logger.getLogger(this.getClass().getName()).warning
-                    ("configured GUI element representing class " + className +
-                     " can not be loaded.");
+                Console.traceln(Level.WARNING, "configured GUI element representing class " +
+                                className + " can not be loaded.");
                 throw new GUIModelConfigurationException
                     ("configured GUI element representing class " + className +
@@ -151,47 +150,42 @@
             }
             catch (SecurityException e) {
-                Logger.getLogger(this.getClass().getName()).log
-                    (Level.WARNING, "configured GUI element representing class " + className +
+                Console.traceln(Level.WARNING, "configured GUI element representing class " +
+                                className + " can not be instantiated due to security reasons.");
+                throw new GUIModelConfigurationException
+                    ("configured GUI element representing class " + className +
                      " can not be instantiated due to security reasons.", e);
-                throw new GUIModelConfigurationException
-                    ("configured GUI element representing class " + className +
-                     " can not be instantiated due to security reasons.", e);
             }
             catch (NoSuchMethodException e) {
-                Logger.getLogger(this.getClass().getName()).warning
-                    ("configured GUI element representing class " + className +
-                     " does not provide an appropriate constructur.");
-                throw new GUIModelConfigurationException
-                    ("configured GUI element representing class " + className +
-                     " does not provide an appropriate constructur.", e);
+                Console.traceln(Level.WARNING, "configured GUI element representing class " +
+                                className + " does not provide an appropriate constructor.");
+                throw new GUIModelConfigurationException
+                    ("configured GUI element representing class " + className +
+                     " does not provide an appropriate constructor.", e);
             }
             catch (IllegalArgumentException e) {
-                Logger.getLogger(this.getClass().getName()).warning
+                Console.traceln(Level.WARNING, "configured GUI element representing class " +
+                                className + " does not provide an appropriate constructor " +
+                                "accepting the provided parameters.");
+                throw new GUIModelConfigurationException
                     ("configured GUI element representing class " + className + " does not " +
-                     "provide an appropriate constructur accepting the provided parameters.");
-                throw new GUIModelConfigurationException
-                    ("configured GUI element representing class " + className + " does not " +
-                     "provide an appropriate constructur accepting the provided parameters.", e);
+                     "provide an appropriate constructor accepting the provided parameters.", e);
             }
             catch (InstantiationException e) {
-                Logger.getLogger(this.getClass().getName()).log
-                    (Level.WARNING, "configured GUI element representing class " + className +
+                Console.traceln(Level.WARNING, "configured GUI element representing class " +
+                                className + " can not be instantiated.");
+                throw new GUIModelConfigurationException
+                    ("configured GUI element representing class " + className +
                      " can not be instantiated.", e);
+            }
+            catch (IllegalAccessException e) {
+                Console.traceln(Level.WARNING, "configured GUI element representing class " +
+                                className + " can not be instantiated.");
                 throw new GUIModelConfigurationException
                     ("configured GUI element representing class " + className +
                      " can not be instantiated.", e);
             }
-            catch (IllegalAccessException e) {
-                Logger.getLogger(this.getClass().getName()).log
-                    (Level.WARNING, "configured GUI element representing class " + className +
-                     " can not be instantiated.", e);
-                throw new GUIModelConfigurationException
-                    ("configured GUI element representing class " + className +
-                     " can not be instantiated.", e);
-            }
             catch (InvocationTargetException e) {
-                Logger.getLogger(this.getClass().getName()).log
-                    (Level.WARNING, "configured GUI element representing class " + className +
-                     " can not be instantiated.", e);
+                Console.traceln(Level.WARNING, "configured GUI element representing class " +
+                                className + " can not be instantiated.");
                 throw new GUIModelConfigurationException
                     ("configured GUI element representing class " + className +
@@ -201,7 +195,7 @@
         
         if (guiElement == null ) {
-            Logger.getLogger(this.getClass().getName()).log
-                (Level.WARNING, "no class representing GUI elements of type " +
-                 specification.getType() + " found. Please extends GUI element mapping files.");
+            Console.traceln(Level.WARNING, "no class representing GUI elements of type " +
+                            specification.getType() + " found. Please extends GUI element " +
+                            "mapping files.");
             throw new GUIModelConfigurationException
                 ("no class representing GUI elements of type " + specification.getType() +
