Changeset 16071 in josm for trunk/src


Ignore:
Timestamp:
2020-03-08T10:37:57+01:00 (4 years ago)
Author:
simon04
Message:

see #18752 - ImageDisplay: improve logging

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ImageDisplay.java

    r15333 r16071  
    288288
    289289            if (mayFitMemory(((long) width)*height*4*2)) {
    290                 Logging.info("Loading {0} using default toolkit", file.getPath());
     290                Logging.info(tr("Loading {0}", file.getPath()));
    291291                tracker.addImage(img, 1);
    292292
     
    346346                    visibleRect = new VisRect(0, 0, width, height);
    347347
    348                     Logging.info("Loaded {0} with dimensions {1}x{2} memoryTaken={3}m exifOrientationSwitchedDimension={4}",
     348                    Logging.debug("Loaded {0} with dimensions {1}x{2} memoryTaken={3}m exifOrientationSwitchedDimension={4}",
    349349                            file.getPath(), width, height, width*height*4/1024/1024, switchedDim);
    350350                }
Note: See TracChangeset for help on using the changeset viewer.