Index: /FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/connector/ConnectorServlet.java
===================================================================
--- /FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/connector/ConnectorServlet.java	(revision 1442)
+++ /FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/connector/ConnectorServlet.java	(revision 1443)
@@ -142,5 +142,9 @@
 		String typeStr = request.getParameter("Type");
 		String currentFolderStr = request.getParameter("CurrentFolder");
-		// boolean validPath = Utils.isValidPath(currentFolderStr);
+		
+		logger.debug("Parameter Command: {}", commandStr);
+		logger.debug("Parameter CurrentFolder: {}", currentFolderStr);
+		logger.debug("Parameter Type: {}", typeStr);
+
 		// TODO untersuchen wie es vom Res Browser kommt
 		String currentPath = constructTypeBasedFolderString(typeStr,
@@ -151,5 +155,5 @@
 		if (!currentDir.exists()) {
 			currentDir.mkdirs();
-			logger.debug("Dir successfull created: " + currentDirPath);
+			logger.debug("Dir successfull created: {}",currentDirPath);
 		}
 
@@ -161,11 +165,9 @@
 			document = builder.newDocument();
 		} catch (ParserConfigurationException pce) {
-			logger.error("Error while parsing DOM: "
-					+ pce.getLocalizedMessage(), pce);
+			logger.error("Error while parsing DOM", pce);
 		}
 
 		Node root = createCommonXml(document, commandStr, typeStr,
 				currentFolderStr, request.getContextPath() + currentPath);
-		logger.debug("Command = " + commandStr);
 
 		if (commandStr.equals("GetFolders")) {
@@ -212,7 +214,6 @@
 			 */
 		} catch (Exception ex) {
-			logger.error(
-					"Error while transforming DOM to HttpServletResponse: "
-							+ ex.getMessage(), ex);
+			logger.warn(
+					"Error while transforming DOM to HttpServletResponse", ex);
 		}
 
