mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-12 10:41:54 +00:00
#896: show exception in log frame, static final loggers added
This commit is contained in:
@@ -289,7 +289,7 @@ public class Main {
|
||||
try {
|
||||
result.add(worker.get());
|
||||
} catch (CancellationException ex) {
|
||||
Logger.getLogger(Main.class.getName()).log(Level.WARNING, "Loading SWF {0} was cancelled.", streamEntry.getKey());
|
||||
logger.log(Level.WARNING, "Loading SWF {0} was cancelled.", streamEntry.getKey());
|
||||
}
|
||||
}
|
||||
} else {
|
||||
@@ -314,7 +314,7 @@ public class Main {
|
||||
try {
|
||||
result.add(worker.get());
|
||||
} catch (CancellationException ex) {
|
||||
Logger.getLogger(Main.class.getName()).log(Level.WARNING, "Loading SWF {0} was cancelled.", sourceInfo.getFileTitleOrName());
|
||||
logger.log(Level.WARNING, "Loading SWF {0} was cancelled.", sourceInfo.getFileTitleOrName());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user