gwt: print error message only

This commit is contained in:
Hannes Janetzek 2014-03-20 15:22:03 +01:00
parent 5b58898975
commit 83dbce18fe

View File

@ -53,8 +53,9 @@ public class UrlTileDataSource implements ITileDataSource {
mSink = sink; mSink = sink;
try { try {
mConn.sendRequest(tile, this); mConn.sendRequest(tile, this);
} catch (IOException e) { } catch (Exception e) {
e.printStackTrace(); ///e.printStackTrace();
log.error("{} {}", mTile, e.getMessage());
sink.completed(FAILED); sink.completed(FAILED);
} }
} }