From 6a4a489336e6810496ef84d920ff9e536a242645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Fri, 18 Jul 2025 21:39:11 +0200 Subject: [PATCH] AS1/2 assembly timeout log description --- libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java index 88d1001df..4598a4506 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java @@ -4764,7 +4764,7 @@ public final class SWF implements SWFContainerItem, Timelined, Openable { } catch (CancellationException ex) { throw ex; } catch (Exception ex) { - logger.log(Level.SEVERE, null, ex); + logger.log(Level.SEVERE, "Reading action list error in " + src.getSwf().getShortPathTitle() + ":" + src.getScriptName(), ex); return new ActionList(src.getSwf().getCharset()); } }