added release logging

This commit is contained in:
Sebastian Sdorra
2011-02-03 19:17:08 +01:00
parent 8c14e572c8
commit fa1aa6a251
5 changed files with 161 additions and 13 deletions

View File

@@ -29,13 +29,10 @@
*
*/
package sonia.scm.util;
//~--- non-JDK imports --------------------------------------------------------
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
//~--- JDK imports ------------------------------------------------------------
import java.util.ArrayList;
@@ -50,12 +47,6 @@ import java.util.ServiceLoader;
public class ServiceUtil
{
/** Field description */
private static final Logger logger =
LoggerFactory.getLogger(ServiceUtil.class);
//~--- get methods ----------------------------------------------------------
/**
* Method description
*
@@ -102,7 +93,8 @@ public class ServiceUtil
}
catch (NoSuchElementException ex)
{
logger.debug(ex.getMessage(), ex);
// do nothing
}
return result;
@@ -135,7 +127,8 @@ public class ServiceUtil
}
catch (NoSuchElementException ex)
{
logger.debug(ex.getMessage(), ex);
// do nothing
}
return result;