diff gwt-client/src/main/java/org/dive4elements/river/client/server/MapOutputServiceImpl.java @ 8203:238fc722f87a

sed 's/logger/log/g' src/**/*.java
author Sascha L. Teichmann <teichmann@intevation.de>
date Fri, 05 Sep 2014 13:19:22 +0200
parents ea9eef426962
children 5e38e2924c07
line wrap: on
line diff
--- a/gwt-client/src/main/java/org/dive4elements/river/client/server/MapOutputServiceImpl.java	Fri Sep 05 12:58:17 2014 +0200
+++ b/gwt-client/src/main/java/org/dive4elements/river/client/server/MapOutputServiceImpl.java	Fri Sep 05 13:19:22 2014 +0200
@@ -38,7 +38,7 @@
 implements   MapOutputService
 {
 
-    private static final Logger logger =
+    private static final Logger log =
         Logger.getLogger(MapOutputServiceImpl.class);
 
 
@@ -49,7 +49,7 @@
     public MapConfig doOut(Collection collection)
     throws ServerException
     {
-        logger.info("MapOutputServiceImpl.doOut");
+        log.info("MapOutputServiceImpl.doOut");
 
         String url  = getServletContext().getInitParameter("server-url");
         String uuid = collection.identifier();
@@ -78,10 +78,10 @@
             return MapHelper.parseConfig(response);
         }
         catch (ConnectionException e) {
-            logger.error(e, e);
+            log.error(e, e);
         }
         catch (IOException ioe) {
-            logger.error(ioe, ioe);
+            log.error(ioe, ioe);
         }
 
         throw new ServerException(ERROR_NO_MAP_CONFIG);

http://dive4elements.wald.intevation.org