Index: /FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/ConfigurationHandler.java
===================================================================
--- /FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/ConfigurationHandler.java	(revision 1427)
+++ /FCKeditor.Java/branches/2.4/src/main/java/net/fckeditor/ConfigurationHandler.java	(revision 1428)
@@ -57,6 +57,6 @@
 			    .getResourceAsStream("default.properties")));
 		} catch (IOException e) {
-			logger.error("Error while loading the default properties", e);
-			throw new RuntimeException("Can't load default properties", e);
+			logger.error("Error while loading the default properties: " + e.getMessage(), e);
+			throw new RuntimeException("Can't load default properties; becouse: " + e.getMessage(), e);
 		}
 		baseDir = defaultProperties.getProperty("fckeditor.basedir");
@@ -65,7 +65,7 @@
 		fckEditorHeight = defaultProperties.getProperty("fckeditor.height");
 		fckEditorToolbarSet = defaultProperties.getProperty("fckeditor.toolbarset");
-		forceSingleExtension = Boolean.valueOf(defaultProperties.getProperty("forcesingleextension"));
-
-		logger.info("Default properties loaded and initialized successfully");
+		forceSingleExtension = Boolean.valueOf(defaultProperties.getProperty("fckeditor.forcesingleextension"));
+
+		logger.info("Default properties loaded and initialized successfully.");
 	}
 
