diff --git a/src/net/java/sip/communicator/impl/configuration/ConfigurationServiceImpl.java b/src/net/java/sip/communicator/impl/configuration/ConfigurationServiceImpl.java index 2367674bf..363f0177c 100644 --- a/src/net/java/sip/communicator/impl/configuration/ConfigurationServiceImpl.java +++ b/src/net/java/sip/communicator/impl/configuration/ConfigurationServiceImpl.java @@ -1242,15 +1242,16 @@ public void purgeStoredConfiguration() * Goes over all system properties and outputs their names and values for * debug purposes. The method has no effect if the logger is at a log level * other than DEBUG or TRACE (FINE or FINEST). + * * Changed that system properties are printed in INFO level and this way + * they are included in the beginning of every users log file. */ private void debugPrintSystemProperties() { - if (logger.isDebugEnabled()) + if(logger.isInfoEnabled()) { for (Map.Entry entry : System.getProperties().entrySet()) - if (logger.isDebugEnabled()) - logger.debug(entry.getKey() + "=" + entry.getValue()); + logger.info(entry.getKey() + "=" + entry.getValue()); } }