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
This commit is contained in:
lizzardo 2009-10-17 16:29:10 +00:00
parent 590eff6410
commit 4dec8bcaa1
1 changed files with 3 additions and 0 deletions

View File

@ -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));