]> gerrit.simantics Code Review - simantics/district.git/commitdiff
Change logging to trace for elevation server 71/3471/1
authorjsimomaa <jani.simomaa@gmail.com>
Thu, 7 Nov 2019 12:22:15 +0000 (14:22 +0200)
committerjsimomaa <jani.simomaa@gmail.com>
Thu, 7 Nov 2019 12:22:15 +0000 (14:22 +0200)
gitlab #45

Change-Id: Iac8d0a4649620d4cad4dc8a8dc4bd26ef5dfbb0d

org.simantics.maps.elevation.server/src/org/simantics/maps/elevation/server/TiffTileInterface.java

index 8f7ecc010d285e5ba41d55728fc2fc0e904668ed..f688024b0d078ef8250593a2878202eaa1dc6cef 100644 (file)
@@ -116,7 +116,7 @@ public class TiffTileInterface implements Closeable {
     }
 
     public Number lookup(double x, double y) {
-        LOGGER.info("Looking up x={} y={}", x, y);
+        LOGGER.trace("Looking up x={} y={}", x, y);
         DirectPosition p = new DirectPosition2D(c4326, x, y);
         List<Path> tifFiles = (List<Path>) index.query(new Envelope(new Coordinate(x, y)));
         for (Path tifFile : tifFiles) {