Commit eca5b680 authored by Riegel's avatar Riegel
Browse files

Style: Add info log of current decompression attempt

2 merge requests!28Version 3.17.0 Release,!26Add ZIP-archive support
Showing with 2 additions and 0 deletions
+2 -0
......@@ -152,6 +152,7 @@ public class ZipEntryManager {
disableTaskButtons();
Thread t = new Thread(() -> {
CityGmlZipEntry entry = entryList.getSelectionModel().getSelectedItem().getEntry();
logger.info("Decompressing entry \"{}\"", entry.getDisplayName());
controller.decompressZipEntry(entry, progressValue ->
Platform.runLater(() -> progress.setProgress(progressValue))
);
......@@ -202,6 +203,7 @@ public class ZipEntryManager {
int count = 0;
int total = entryList.getItems().size();
for (ZipEntryNode node : entryList.getItems()) {
logger.info("Decompressing entry \"{}\"", node.getEntry().getDisplayName());
controller.decompressZipEntry(node.getEntry(), progressValue ->
Platform.runLater(() -> subProgress.setProgress(progressValue))
);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment