From eea4110690b86079b9194fd3f8d2c82b71db53d5 Mon Sep 17 00:00:00 2001 From: Damian Minkov Date: Tue, 1 Feb 2011 08:04:21 +0000 Subject: [PATCH] Network utils listens for network changes and updates dns servers in our resolver. --- .../impl/configuration/ConfigurationServiceImpl.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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()); } }