Index: /java/AEInstaller2-Updater/src/net/oni2/aeinstaller/updater/AEInstaller2Updater.java
===================================================================
--- /java/AEInstaller2-Updater/src/net/oni2/aeinstaller/updater/AEInstaller2Updater.java	(revision 1133)
+++ /java/AEInstaller2-Updater/src/net/oni2/aeinstaller/updater/AEInstaller2Updater.java	(revision 1134)
@@ -5,4 +5,6 @@
 import java.io.FileOutputStream;
 import java.io.PrintStream;
+import java.text.SimpleDateFormat;
+import java.util.Date;
 
 import javax.swing.JFrame;
@@ -13,4 +15,5 @@
 import net.oni2.aeinstaller.updater.backend.Paths;
 import net.oni2.aeinstaller.updater.gui.MainWin;
+import net.oni2.platformtools.PlatformInformation;
 
 /**
@@ -43,4 +46,23 @@
 		}
 
+		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+		System.out.println("Time:      " + sdf.format(new Date()));
+		System.out.println("Java:      \""
+				+ System.getProperty("java.runtime.name") + "\" v. "
+				+ System.getProperty("java.version") + " by \""
+				+ System.getProperty("java.vendor") + "\" (spec. "
+				+ System.getProperty("java.specification.version") + ")");
+		System.out.println("Java home: " + System.getProperty("java.home"));
+		System.out.println("Command:   "
+				+ System.getProperty("sun.java.command"));
+		System.out.println("PrefsPath: " + Paths.getPrefsPath());
+		System.out.println("DownPath:  " + Paths.getDownloadPath());
+		System.out.println("TempPath:  " + Paths.getTempPath());
+		System.out.println("Platform:  " + System.getProperty("os.name") +
+				" detected as " + PlatformInformation.getPlatform().toString());
+		System.out.println("Architect: "
+				+ PlatformInformation.getArchitecture());
+		System.out.println("");
+
 		if (Paths.getProxySettingsFilename().exists()) {
 			ProxySettings.deserializeFromFile(Paths.getProxySettingsFilename());
Index: /java/AEInstaller2-Updater/src/net/oni2/aeinstaller/updater/gui/MainWin.java
===================================================================
--- /java/AEInstaller2-Updater/src/net/oni2/aeinstaller/updater/gui/MainWin.java	(revision 1133)
+++ /java/AEInstaller2-Updater/src/net/oni2/aeinstaller/updater/gui/MainWin.java	(revision 1134)
@@ -40,5 +40,5 @@
 	public MainWin() {
 		super("AEInstaller2 self updater");
-		System.out.println("AEI2 updater version 1.3");
+		System.out.println("AEI2 updater version 1.4");
 		setLayout(new BorderLayout(2, 4));
 
@@ -144,6 +144,7 @@
 				boolean showError = false;
 				
-				int x = svn.checkSVN("http://svn.aei.oni2.net",
-						new File(Paths.getPrefsPath(), "bin"));
+				File wcDir = new File(Paths.getPrefsPath(), "bin");
+				System.out.println("AEI WC path: " + wcDir.getAbsolutePath());
+				int x = svn.checkSVN("http://svn.aei.oni2.net", wcDir);
 				switch (x) {
 					case -2: // No repos connection
@@ -169,5 +170,5 @@
 						}
 						showError = !svn.updateWC("http://svn.aei.oni2.net",
-								new File(Paths.getPrefsPath(), "bin"),
+								wcDir,
 								new SVNUpdateListener() {
 									public void statusUpdate(int done, int total) {
