Update to console output.

master
MagicBot 2023-05-15 06:12:35 -04:00
parent b3ba8f5c9f
commit c3f059c7fc
1 changed files with 5 additions and 4 deletions

View File

@ -54,17 +54,18 @@ public enum MapLoader {
realmUUID = RealmMap.getRealmIDByColor(pixelColor);
realmMap[j][i] = realmUUID;
bytesRead++;
bytesRead++;
if (realmUUID != 0)
realmsWritten++;
if (realmUUID != 0)
realmsWritten++;
}
}
timeToLoad = System.currentTimeMillis() - timeToLoad;
Logger.info( bytesRead + "Realm imageMNap pixels processed in " + timeToLoad / 1000 + " seconds");
Logger.info(bytesRead + " pixels processed in " + timeToLoad / 1000 + " seconds");
Logger.info(realmsWritten + " realm pixels written ");
return realmMap;
}