diff flys-client/src/main/java/de/intevation/flys/client/server/DescribeCollectionServiceImpl.java @ 1367:ab8eb2f544f2

Replaced stdout and stderr logging with log4j loggers in server classes. flys-client/trunk@3069 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 25 Oct 2011 12:31:15 +0000
parents 478a571f1f94
children bc06a671ef60
line wrap: on
line diff
--- a/flys-client/src/main/java/de/intevation/flys/client/server/DescribeCollectionServiceImpl.java	Tue Oct 25 11:07:14 2011 +0000
+++ b/flys-client/src/main/java/de/intevation/flys/client/server/DescribeCollectionServiceImpl.java	Tue Oct 25 12:31:15 2011 +0000
@@ -2,6 +2,8 @@
 
 import org.w3c.dom.Document;
 
+import org.apache.log4j.Logger;
+
 import com.google.gwt.user.server.rpc.RemoteServiceServlet;
 
 import de.intevation.artifacts.common.utils.ClientProtocolUtils;
@@ -28,6 +30,10 @@
 extends      RemoteServiceServlet
 implements   DescribeCollectionService
 {
+    private static final Logger logger =
+        Logger.getLogger(DescribeCollectionServiceImpl.class);
+
+
     /** The error message key that is thrown if an error occured while
      * describe() a Collection.*/
     public static final String ERROR_DESCRIBE_COLLECTION =
@@ -37,7 +43,7 @@
     public Collection describe(String uuid, String serverUrl, String locale)
     throws ServerException
     {
-        System.out.println("DescribeCollectionServiceImpl.describe");
+        logger.info("DescribeCollectionServiceImpl.describe");
 
         Document describe = ClientProtocolUtils.newDescribeCollectionDocument(
             uuid);
@@ -54,12 +60,12 @@
                 throw new ServerException(ERROR_DESCRIBE_COLLECTION);
             }
 
-            System.out.println("Collection successfully parsed.");
+            logger.debug("Collection successfully parsed.");
 
             return c;
         }
         catch (ConnectionException ce) {
-            System.err.println(ce.getLocalizedMessage());
+            logger.error(ce, ce);
         }
 
         throw new ServerException(ERROR_DESCRIBE_COLLECTION);

http://dive4elements.wald.intevation.org