]> gerrit.simantics Code Review - simantics/district.git/commitdiff
Change logging to trace for elevation server 74/3474/1
authorjsimomaa <jani.simomaa@gmail.com>
Thu, 7 Nov 2019 12:22:15 +0000 (14:22 +0200)
committerTuukka Lehtonen <tuukka.lehtonen@semantum.fi>
Thu, 7 Nov 2019 12:41:49 +0000 (12:41 +0000)
gitlab #45

Change-Id: Iac8d0a4649620d4cad4dc8a8dc4bd26ef5dfbb0d
(cherry picked from commit c30f0393c0ba0ac5d2c5a895f250a6484e78bf0e)

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) {