Ignore:
Timestamp:
2013-10-07T13:48:08+02:00 (13 years ago)
Author:
Don-vip
Message:

cosmetics in error reporting

Location:
trunk/src/org/openstreetmap/josm/gui/layer/geoimage
Files:
2 edited

Legend:

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

    r6310 r6313  
    8080                    Thread.sleep(5);
    8181                } catch (InterruptedException e) {
    82                     Main.warn(e);
     82                    Main.warn("InterruptedException in "+getClass().getSimpleName()+" while loading image "+file.getPath());
    8383                }
    8484            }
  • trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ThumbsLoader.java

    r6310 r6313  
    7070            tracker.waitForID(0);
    7171        } catch (InterruptedException e) {
    72             Main.error(" InterruptedException");
     72            Main.error(" InterruptedException while loading thumb");
    7373            return null;
    7474        }
     
    8686                Thread.sleep(10);
    8787            } catch(InterruptedException ie) {
    88                 Main.warn(ie);
     88                Main.warn("InterruptedException while drawing thumb");
    8989            }
    9090        }
Note: See TracChangeset for help on using the changeset viewer.