Index: applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/cubemap/CubemapBuilder.java
===================================================================
--- applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/cubemap/CubemapBuilder.java	(revision 34418)
+++ applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/cubemap/CubemapBuilder.java	(revision 34419)
@@ -148,5 +148,5 @@
 					if(StreetsideProperties.DEBUGING_ENABLED.get()) {
 					  logger.debug(MessageFormat.format("Completed tile downloading task {0} in {1} seconds.",ff.get(),
-							(startTime - System.currentTimeMillis())/ 1000));
+							(System.currentTimeMillis())/ 1000 - startTime));
 					}
 				}
@@ -162,5 +162,5 @@
 
 		if (StreetsideProperties.DEBUGING_ENABLED.get()) {
-      logger.debug(MessageFormat.format("Tile imagery downloading tasks completed in {0} seconds.",  runTime/1000000));
+      logger.debug(MessageFormat.format("Tile imagery downloading tasks completed in {0} seconds.",  runTime/1000));
 		}
 
Index: applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/cubemap/TileDownloadingTask.java
===================================================================
--- applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/cubemap/TileDownloadingTask.java	(revision 34418)
+++ applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/cubemap/TileDownloadingTask.java	(revision 34419)
@@ -101,5 +101,5 @@
 	public String call() throws Exception {
 
-		BufferedImage img = ImageIO.read(new Resty().bytes(
+	  BufferedImage img = ImageIO.read(new Resty().bytes(
 				StreetsideURL.VirtualEarth.streetsideTile(tileId, false).toExternalForm())
 				.stream());
