From 4dec8bcaa1cf17b1c1d82000bb9841dff1cc3ba4 Mon Sep 17 00:00:00 2001 From: lizzardo Date: Sat, 17 Oct 2009 16:29:10 +0000 Subject: [PATCH] Add a dump of System.getProperties() to the log when ECUExec starts to help with debugging and support git-svn-id: https://svn2.assembla.com/svn/romraider/trunk@239 38686702-15cf-42e4-a595-3071df8bf5ea --- src/com/romraider/ECUExec.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/com/romraider/ECUExec.java b/src/com/romraider/ECUExec.java index 70fd70b5..7aaaeec4 100644 --- a/src/com/romraider/ECUExec.java +++ b/src/com/romraider/ECUExec.java @@ -49,6 +49,9 @@ public class ECUExec { public static void main(String args[]) { // init debug logging initDebugLogging(); + // dump the system properties to the log file as early as practical to help debugging/support + LOGGER.info("System Properties: \n\t" + + System.getProperties().toString().replace(",", "\n\t")); // check for dodgy threading - dev only // RepaintManager.setCurrentManager(new ThreadCheckingRepaintManager(true));